Самый простой способ показать вам, что я пытаюсь сделать с рабочей версией: http://jsfiddle.net/t8Brm/11/ Требуются современные браузеры с поддержкой GEO Location.
В коде JS я закомментировал код, который вызывает проблему, чтобы вы могли увидеть, как он работает в первую очередь.
Вопрос в следующем:
как я могу раскомментировать код ниже, который использует географическое положение, чтобы добавить маркер и центрировать карту, не получая Error: position.coords is undefined
$(this).trigger("gMap.addMarker", {
latitude: latitude,
longitude: longitude,
content: "You Are Here"
});
$(this).trigger("gMap.centerAt", {
latitude: latitude,
longitude: longitude
});
Это оригинальный плагин: http://github.com/marioestrada/jQuery-gMap Я добавил дополнительные функции для GEO Location. Показано ниже:
function generateDirections(from, to, directionHtml){
var directionsDisplay;
var directionsService = new google.maps.DirectionsService();
$('#'+directionHtml).html('');
var request = {
origin: from,
destination: to,
travelMode: google.maps.DirectionsTravelMode.DRIVING
};
directionsDisplay = new google.maps.DirectionsRenderer();
directionsDisplay.setMap($gmap);
directionsDisplay.setPanel(document.getElementById(directionHtml));
directionsService.route(request, function(response, status){
if(status == google.maps.DirectionsStatus.OK){
directionsDisplay.setDirections(response);
if($("#gmaps_from").val().length === 0)
$("#gmaps_from").val(response.routes[0].legs[0].start_address);
}
});
setTimeout(function(){
$("#"+directionHtml).slideDown("slow");
},1000);
}
//make this available to the click element
$.data($('#gmaps_getdirections')[0], 'inst', this);
$('#gmaps_getdirections').click(function(e) {
e.preventDefault();
var from = $('#gmaps_from').val();
if(opts.address){
var to = opts.address;
} else {
var to = parseFloat(opts.latitude) + ", " + parseFloat(opts.longitude);
}
generateDirections(from, to, "gmaps_directions");
//open the google window
//window.open("http://maps.google.com/maps?saddr=" + from + "&daddr=" + to, "GoogleWin", "menubar=1,resizable=1,scrollbars=1,width=750,height=500,left=10,top=10");
});
if(opts.geolocation && navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function(position){
var latitude = position.coords.latitude;
var longitude = position.coords.longitude;
var from = parseFloat(latitude) + ", " + parseFloat(longitude);
if(opts.address){
var to = opts.address;
} else {
var to = parseFloat(opts.latitude) + ", " + parseFloat(opts.longitude);
}
/*$(this).trigger("gMap.addMarker", {
latitude: latitude,
longitude: longitude,
content: "You Are Here"
});
$(this).trigger("gMap.centerAt", {
latitude: latitude,
longitude: longitude
});*/
generateDirections(from, to, "gmaps_directions");
});
}