We are a web2 & web3 development company with littler experience with GIS and we aim to build a GIS solution that needs to:
1. load a map of a specific locality (village/city) ... we are not talking about limit padding ... we need to have visible only the map are for that locality ... we currently have the geojson data for that but we did not manage to implement the logic in ArcGis JS
2. We need to add multiple layers on top of the map of point one containing with different purposes.
2.1 We have the following verctor tile links:
- https://geoportal.ancpi.ro/hosted_services/rest/services/Hosted/imobile_cladiri/VectorTileServer
- https://geoportal.ancpi.ro/hosted_services/rest/services/Hosted/etichete/VectorTileServer
- https://geoportal.ancpi.ro/hosted_services/rest/services/Hosted/UAT/VectorTileServer
they contain official public data of parcels of land that we need to display and make the clickable ... they look like in the attached image
2.2 we will need to add other layers on top with information regarding public services like water pipes, gas pipes and other
One of issues we found while trying to load the parcel layers is that they were generated in a different spacial referance than the standard WebMercator ... we have no idea on how to tackle this atm
TBH i think this ticket i rather complex in scope but we did not have any other place to start the conversation in ... so thank you for anyone reading this and every answer will be greatly appreciated
Thanks,
Rares
Solved! Go to Solution.
Hi @wowzaaa,
I'd suggest starting off with our tutorials and then after your comfortable with the basics move on to some of the samples that deal with the layer types you need to add. Having the vector tile layers in a different projection should only problematic if you want to use other tiled services which have a different spatial reference. You won't be able to use web mercator basemaps for instance. With the projection these services are in you will likely need to either create your own basemap or just use operational layers which can project themselves on the fly. We are adding popups to vector tile layers in an upcoming release.
I created this codepen that hopefully helps. It adds the three layers you provided to a new map. https://codepen.io/sagewall/pen/ZYEVKpz
I hope this helps you get started.
Hi @wowzaaa,
I'd suggest starting off with our tutorials and then after your comfortable with the basics move on to some of the samples that deal with the layer types you need to add. Having the vector tile layers in a different projection should only problematic if you want to use other tiled services which have a different spatial reference. You won't be able to use web mercator basemaps for instance. With the projection these services are in you will likely need to either create your own basemap or just use operational layers which can project themselves on the fly. We are adding popups to vector tile layers in an upcoming release.
I created this codepen that hopefully helps. It adds the three layers you provided to a new map. https://codepen.io/sagewall/pen/ZYEVKpz
I hope this helps you get started.