Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to integrate gmap3 JS plugin

http://gmap3.net/

with the gpxviewer module

https://github.com/peplin/gpxviewer

The gpxviewer documentation uses

var map = new google.maps.Map(document.getElementById("map"),
    mapOptions);
loadGPXFileIntoGoogleMap(map, "pocotrail.xml");

for creating the map however gmap3 uses the following code generating the map

$("#test").gmap3();

So how do I get the real map object from gmap3 for passing it to loadGPXFileIntoGoogleMap() ?

share|improve this question
use get ... see docs: gmap3.net/en/catalog/16-misc/get-61 – charlietfl Feb 13 at 8:36

1 Answer

up vote 1 down vote accepted

It would do the trick:

var map = $("#test").gmap3("get");
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.