I want to add a map in my android, I can't extends MapActivity because the map is in a tab ant it extends Fragment.
So I'm using a WebView, I followed this code:
https://developers.google.com/maps/articles/android_v3
the problem is when I try to add a marker, in the html file I have:
function createMarker(lat, lng){
var latlng = new google.maps.LatLng(lat, lng);
var marker = new google.maps.Marker({
position: latlng,
map: map
});
return marker
I guess the problem is "map" because I don't know how to access to this.