- removed marker label from userLocation gmaps url since gmaps can't

cope with it anymore
- bumped version number...it has to be bumped due to some bug fixes and
  I don't like v0.4.9.1...so from now on we are on v0.5+
This commit is contained in:
Philipp Schaefer
2013-07-23 10:03:05 +02:00
parent 56778d9274
commit 9f9b257e85
2 changed files with 3 additions and 3 deletions

View File

@ -43,7 +43,7 @@ window.plugin.userLocation.setup = function() {
marker.on('click', function(e) {
window.console.log('marker location');
var ll = e.target.getLatLng();
window.androidCopy('https://maps.google.com/?q='+ll.lat+','+ll.lng+'%20('+PLAYER.nickname+')');
window.androidCopy('https://maps.google.com/?q='+ll.lat+','+ll.lng);
});
plugin.userLocation.marker = marker;