[jQuery] Variable for Google Maps API
Hi,
I have a Website with geocoding meta tags like this:
<meta name="ICBM" content="50.1678, -97.133185">
With help of jQuery I can extract the content like this:
var title = $("meta[name=ICBM]").attr("content");
This works fine.
But how can I store the variable to this:
map.setCenter(new GLatLng( variablemust go here ),5);
I tried in vain to get since two days, so I would appreciate any help.
Thank you
RalphM