B4A Library Class - Google Map Ruler

This class adds path measurement capability just like the function found in Google Earth.

This is still a work in progress. So suggestions are welcome.

Dependencies:
-Google Maps Library
-GoogleMapsExtra Library By Martin Pearman(warwound)
-GPS Library
 

Attachments

  • Google Maps 04.zip
    219.6 KB · Views: 330
  • Screenshot.png
    Screenshot.png
    77.2 KB · Views: 395

ivanomonti

Expert
Licensed User
Longtime User
error code (galaxy note)

Parsing code. 0.01
Compiling code. 0.02
ObfuscatorMap.txt file created in Objects folder.
Compiling layouts code. 0.00
Generating R file. 0.07
Compiling generated Java code. Error
B4A line: 62
GoogleMapsExtras1.SetOnMarkerDragListener(mGmap, OnMarkerDragListener1)
javac 1.6.0_27
src\b4a\example\main.java:342: package com.google.android.gms.maps does not exist
_googlemapsextras1.SetOnMarkerDragListener((com.google.android.gms.maps.GoogleMap)(mostCurrent._vvvvv1.getObject()),(com.google.android.gms.maps.GoogleMap.OnMarkerDragListener)(_onmarkerdraglistener1.getObject()));
^
1 error
 

warwound

Expert
Licensed User
Longtime User
@ivanomonti

Does this exception only occur when you compile using Release (obfuscated) mode?

If not then the error must be related to:
package com.google.android.gms.maps does not exist

That's part of the b4a GoogleMap library - which presumably you have checked in your project?

Martin.
 
Top