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

0
1

Using the example http://wiki.openstreetmap.org/wiki/Openlayers_Track_example I can make a map with a GPX trace on it but I have to centre the map by finding the co-ordinates separately and assigning them to variables for lat lon, and getting the zoom level by trial and error. I can also add a pin to mark the start but again have to position it by manually entering the co-ordinates. It's entirely possible to use javascript to parse the GPX file to find the bounds of the trace, and the centre point. The start point is also simply the first trackpoint.

Does anyone have any idea how to do this? I'm capable of adapting examples but not of generating this complexity of scripting!

asked 16 Aug '12, 15:59

digby's gravatar image

digby
465612
accept rate: 0%

edited 16 Aug '12, 16:17


Hi,

Although this question is more related to OpenLayers than OSM, you can try with this code:

map.zoomToExtent(lgpx.getDataExtent());

EDIT: this code add also the marker at the startpoint and should be placed after adding the layer lgpx to the map (map.addLayer(lgpx))

lgpx.events.register("loadend", lgpx, function() {
  this.map.zoomToExtent(this.getDataExtent());
  var startPoint = this.features[0].geometry.components[0];
  layerMarkers.addMarker(new OpenLayers.Marker(new OpenLayers.LonLat(startPoint.x, startPoint.y),icon));
});
permanent link

answered 16 Aug '12, 21:27

NicolasDumoulin's gravatar image

NicolasDumoulin
3.3k42256
accept rate: 13%

edited 17 Aug '12, 11:27

Am I asking in the wrong forum?

(17 Aug '12, 08:23) digby
2

If you want to be sure to get an answer (and a good one), it's better to ask your question to the OpenLayers community. Anyway, what about my answer?

(17 Aug '12, 08:31) NicolasDumoulin

Not sure where to put it. Does it just go in as is? Does it override the vars of lat lon and zoom? Tried it in various places without success. http://www.carnethy.com/maps/mapping%20info/osm_map_layer_to_use_in_iframe.htm

(17 Aug '12, 09:22) digby

Ok, it works by adding this code after map.addLayer(lgpx): lgpx.events.register("loadend", lgpx, function() { this.map.zoomToExtent(this.getDataExtent()) } );

(17 Aug '12, 09:42) NicolasDumoulin
1

Wow! It works! Thanks. And any idea how to get the start point from the GPX to set the pin in the right place?

(17 Aug '12, 09:58) digby

You can add the marker at the startpoint by modifying the previous giving code as follow:

lgpx.events.register("loadend", lgpx, function() {

this.map.zoomToExtent(this.getDataExtent());

var startPoint = this.features[0].geometry.components[0];

layerMarkers.addMarker(new OpenLayers.Marker(new OpenLayers.LonLat(startPoint.x, startPoint.y),icon));

});

(17 Aug '12, 10:15) NicolasDumoulin

I can only laugh in amazement! Never in a milliion years could I have worked that out!

(17 Aug '12, 11:32) digby

Can I further try your patience and ask how you would return the end point of a trace to place a finish pin? Would you adapt var startPoint = this.features[0].geometry.components[0];
layerMarkers.addMarker(new OpenLayers.Marker(new OpenLayers.LonLat(startPoint.x, startPoint.y),icon));

to var endPoint = something?

(17 Aug '12, 15:01) digby

Right, something like that: var endPoint = this.features[0].geometry.components[this.features[0].geometry.components.length - 1];

(17 Aug '12, 15:33) NicolasDumoulin

Hmm. Didn't work! It puts a pin at the start, or maybe -1 trackpoint from the start

(17 Aug '12, 17:00) digby
showing 5 of 10 show 5 more comments

Two methods of finding a lat lon in a trace are open the GPX with a text editor and just read them or upload the trace to OSM then click on edit trace and in polatch2 under options tick the box that shows lat lon. EDIT You can display the whole trace on an up to date OSM map and pick out boundary Lan Lons by opening the GPX with GPS Prune it's free from the activity workshop, but it does need Java to run ( as does JOSM ). https://activityworkshop.net/software/gpsprune/

permanent link

answered 16 Aug '12, 23:09

andy%20mackey's gravatar image

andy mackey
13.2k87143285
accept rate: 4%

edited 09 Oct '17, 21:23

1

I know I can open the trace in a text editor and read it, but this doesn't help with setting the centre and bounds of an openlayers map.

(17 Aug '12, 09:47) digby

Hi, how i put a marker on the end of gps track? i try use the similar code that you provided, but doesn't work.

permanent link

answered 08 Oct '17, 00:53

Wesley's gravatar image

Wesley
111
accept rate: 0%

lgpx.events.register("loadend", lgpx, function() {
                    this.map.zoomToExtent(this.getDataExtent());
                    var startPoint = this.features[0].geometry.components[0];               
                    layerMarkers.addMarker(new OpenLayers.Marker(new OpenLayers.LonLat(startPoint.x, startPoint.y),icon));

Add this to the previous code, and add a new finish icon in the same way as the start point icon. By the way, I have no idea how this all works!

var endPoint = this.features[0].geometry.components[this.features[0].geometry.components.length - 1];
                    layerMarkers.addMarker(new OpenLayers.Marker(new OpenLayers.LonLat(endPoint.x, endPoint.y),icon2));
                });

In our case the icons are set so:

var size = new OpenLayers.Size(21, 25);
            var offset = new OpenLayers.Pixel(-(size.w/2), -size.h);
            var icon = new OpenLayers.Icon('../../mapping%20info/small_red_pin.png',size,offset);
            var icon2 = new OpenLayers.Icon('../../mapping%20info/small_blue_pin.png',size,offset);

If the map has a circular route on it the finish icon will overlay the start icon which will be hidden if it's the same shape. But you could set the offset to deal with that. Increasing the negative number on length pushes the marker back down the trace.

permanent link

answered 08 Oct '17, 07:27

digby's gravatar image

digby
465612
accept rate: 0%

edited 08 Oct '17, 08:19

Thank you, this problem was solved, now i'm fencing another problem: i want that the my app calculate the distance between two points.

permanent link

answered 09 Oct '17, 13:53

Wesley's gravatar image

Wesley
111
accept rate: 0%

That's got nothing to do with this question. You should start a new topic or find one that is relevant.

permanent link

answered 09 Oct '17, 13:57

digby's gravatar image

digby
465612
accept rate: 0%

Your answer
toggle preview

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:

×255
×122
×112
×98
×10

question asked: 16 Aug '12, 15:59

question was seen: 12,369 times

last updated: 09 Oct '17, 21:23

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