This is a static archive of our old OpenStreetMap Help Site. Please post any new questions and answers at community.osm.org.

Show 10000 GPS Coordinates on a Map

0

Hi Guys,

I'm new to Openstreetmap. I don't have a overview about the project, but I have got some questions:

  1. Is it possible to draw, let's say 10000 Points(Location), on a OSM Map. They points are nearly all in the same Region around Germany, Cologne. And I have got GPS coordinates.
  2. Is it possible to implement this inside a webpage ?
  3. Are there some guides, tips , tutorial etc. for this kind of task ?

I'm happy about every answer or reference.

Best Regards Lukas

asked 12 Oct '11, 10:57

Lukasl09's gravatar image

Lukasl09
11113
accept rate: 0%

edited 12 Oct '11, 22:13

Gnonthgol's gravatar image

Gnonthgol ♦
13.8k16103198

Okay, thank you guys.

With your information i trie my luck.

10k greetings from rainy Cologne

(12 Oct '11, 12:18) Lukasl09

3 Answers:

4

Loading 10k points into OpenLayers in a vector layer will significantly slow down the web browser. You will either have to set up a database that does clustering for you - i.e. only show one marker at first and then show more when zooming in - or you will have to render your own map tiles with the 10k points already drawn directly onto the tiles (or onto transparent PNGs which you then show as an overlay).

Since you seem to be interested in a small area only, rendering your own map tiles would not be too difficult, and could probably be done with Maperitive (see Wiki).

answered 12 Oct '11, 11:41

Frederik%20Ramm's gravatar image

Frederik Ramm ♦
82.5k927201273
accept rate: 23%

1

Of course this is possible, just take a look at OpenLayers and the OpenLayers simple example.

answered 12 Oct '11, 11:17

scai's gravatar image

scai ♦
33.3k21309459
accept rate: 23%

1
  1. Yes
  2. Yes
  3. Openlayers and a GPX layer (alternatively a vector layer)

answered 12 Oct '11, 11:27

petschge's gravatar image

petschge
8.3k217398
accept rate: 21%

Source code available on GitHub .