NOTICE: help.openstreetmap.org is no longer in use from 1st March 2024. Please use the OpenStreetMap Community Forum

Please help provide an example of how to display third-party information on top of OSM for displaying parcel boundaries. Any link with a sample for example will be helpful. I have also attached an image.Image with parcel boundaries

asked 07 Feb '23, 11:35

vijaypandeychetu's gravatar image

vijaypandeyc...
11223
accept rate: 0%


This depends on what medium you want to use - the techniques you would use for a browser map are different from those you would use for a printed map or maybe an app.

One option for a browser-based solution is to use the popular "Leaflet" library to display an OSM map (when accessing OSM's severs, always honour the Tile Usage Policy) and then draw your parcel polygons on top. The source of the parcel polygons could e.g. be a GeoJSON file that you have created. See here for an example that does this: https://www.igismap.com/add-load-geojson-file-point-polyline-polygon-map-leaflet-js/

If you have a very large number of polygons to draw, you will want to implement a server-side filter (so that the Leaflet library can request from the server only those polygons needed for the current map view, not the whole data set). This could be a simple PostGIS database or something like GeoServer (both Open Source).

permanent link

answered 07 Feb '23, 12:24

Frederik%20Ramm's gravatar image

Frederik Ramm ♦
82.5k927201273
accept rate: 23%

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Question tags:

×1

question asked: 07 Feb '23, 11:35

question was seen: 701 times

last updated: 07 Feb '23, 12:24

Related questions

NOTICE: help.openstreetmap.org is no longer in use from 1st March 2024. Please use the OpenStreetMap Community Forum