Vortrag auf der International PHP Conference 2012 Spring Edition zu Geolocation im Browser und Location Based Services wie Google Places und Foursquare
1 of 83
More Related Content
Das Web Wird Mobil - Geolocation und Location Based Services
1. das web
wird mobil
Stephan Schmidt, 1&1 Internet AG
International PHP Conference 2012
Hotel Maritim proArte, Berlin
31. var latlon = new google.maps.LatLng(pos.coords.latitude,
pos.coords.longitude);
var options = {
zoom: 15,
center: latlon,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map($("#map"), options);
var marker = new google.maps.Marker({
position: latlon,
map: map,
title:"Sie sind hier!"
});