- Hello all,
- i am using OpenLayers 5, Angular 6, mapshaper tool(converting shp to json).
- MapshaperTool, Git Code
my process
- i have installed npm mapshaper --save
i am able to upload different .shp files and able to get json features data.
i have 2 different .shp files [layer-ind.shp, layer-administration.shp]
- layer-ind.shp file uploaded its json gives like
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {},
"geometry": {
"type": "LineString",
"coordinates": [
[
75.89355468749999,
18.521283325496277
],
[
80.6396484375,
19.68397023588844
]
]
}
}
]
}
- layer-us.shp file uploaded its json gives like
{
"type": "FeatureCollection",
"features": [
{
"type":"Feature",
"geometry":{
"type":"LineString",
"coordinates":[
[-349771.1875,445307.8125],
[-349789.6875,445314.375],
[-349796.5625,445321.5625],
[-349792.78119999915,445341.4375],
[-349786.53119999915,445351.71880000085],
[-349771.1875,445307.8125]]},
"properties":{
"TYPE":"ISLAND","RuleID":3,
"Shape_Leng":544.475438955
}
}
]
}
when preview these two layers(features) preview on map 1. layer-ind.json file gives correct results and able see layer on map in correct place 2. layer-us.json file gives wrong place showing on map (0,0)
- how to solve these 2nd point layer-us.json issue, i have change the re-projection also like
const vectorSource = new VectorSource({
features: (new GeoJSON()).readFeatures(geojson, {
featureProjection: 'EPSG:4326'
});
});
- i have changed featureProjection code also, but its not working layer-us.json.
please help on this
save my days