- 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

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.cradle.iitc_mobile" package="com.cradle.iitc_mobile"
android:versionCode="30" android:versionCode="31"
android:versionName="0.4.9"> android:versionName="0.5.0">
<uses-sdk <uses-sdk
android:minSdkVersion="14" android:minSdkVersion="14"

View File

@ -43,7 +43,7 @@ window.plugin.userLocation.setup = function() {
marker.on('click', function(e) { marker.on('click', function(e) {
window.console.log('marker location'); window.console.log('marker location');
var ll = e.target.getLatLng(); 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; plugin.userLocation.marker = marker;