Hello!
I'm using library GoogleMaps for my app. Now i want to add bearing, so the map is always aligned in driving direction.
I found a function GetBearingTo in library OSMDroid, which matches my needs.
But if i add this library to my project, i get errors on compiling caused of another definition of class Marker in OSMDroid
used in sub
How can i define an object from a class in a specific library?
Martin
I'm using library GoogleMaps for my app. Now i want to add bearing, so the map is always aligned in driving direction.
I found a function GetBearingTo in library OSMDroid, which matches my needs.
But if i add this library to my project, i get errors on compiling caused of another definition of class Marker in OSMDroid
B4X:
Parsing code. 0.13
Compiling code. Error
Error compiling program.
Error description: Unknown member: position
Occurred on line: 907
MapsCalculatingRoute(SelectedMarker.Position.Latitude, SelectedMarker.Position.Longitude)
Word: position
used in sub
B4X:
Sub Pnl_Maps_MarkerClick (SelectedMarker As Marker) As Boolean
How can i define an object from a class in a specific library?
Martin