Questions tagged [gmsgroundoverlay]
24 questions
0
votes
2 answers
I need to show World map with GroundOverlay on map with animation
I need to show world map on my application.
I tried to use MapView and set liteMode= true and zoomLevel=1 but its not working as i need. Also groundOverlay not supported in liteMode and i need to show multiple groundOverlay on WorldMap.
can anyone…

khushbu
- 382
- 1
- 3
- 15
0
votes
1 answer
How to put image on google map using groundoverlay in android where image having 5k (width)* 5k (height) and 1.6 mb of size?
I wanna put an image of my city which contains roads and homes on google map using groundoverlay method in android, where my image size and dimensions are very large .
How I can put this image on map in android?

Ashish Choudhary
- 444
- 1
- 4
- 11
0
votes
0 answers
Maps API: PNG for GroundOverlay
I'm creating an app for Android which uses Maps API and I want to use GroundOverlay.
Here is my actual onMapReady:
@Override
public void onMapReady(GoogleMap googleMap) {
mMap = googleMap;
//defining coordinates of image bounds
…

remjln
- 41
- 4
0
votes
0 answers
Out Of Memory GroundOverlay Map Android
I have a problem !
I have add a GraundOverlay on Map with this code:
final LatLng NEWARK = new LatLng(40.775067, 14.789154);
final GroundOverlayOptions auleP = new GroundOverlayOptions();
…

Alberto
- 13
- 7
0
votes
0 answers
Google maps GroundOverlay's image dimensions
I cannot find any resource for the standard dimensions of GroundOverlay images (e.g. pixels per meter). How should I calculate it in a way it is efficient but doesn't compromise the quality?

Mamouneyya
- 613
- 5
- 16
0
votes
0 answers
Define custom navigation paths in Google Maps
I am trying to implement something like Google's indoor maps feature, locally in my iOS app, using GroundOverlays. I could easily get the overlay part done by overlaying a .png image at some position in the map, using the API. I could also implement…

Mamouneyya
- 613
- 5
- 16
0
votes
1 answer
Google Map API for android gives Unknown source error while adding ground overlay with BitmapDescriptor loaded from asset
I use below code to add ground ovelay to google map using api 2 from android.
LatLng ne = currentHole.getNe();
LatLng sw = currentHole.getSw();
LatLngBounds mOverlayBound = new LatLngBounds(ne,sw);
BitmapDescriptor mDesc=…

1'hafs
- 559
- 7
- 25
0
votes
2 answers
Google Maps SDK for iOS : GMSGroundOverlay on wrong side of the Earth it zoom less than 3.0
I'm trying to place an image in a GMSGroundOverlay but noticed something weird when I zoom out to zoom < 3.0 (world level).
The image should cover the whole screen of the iPad which is does fine at zoom >= 3.0. but if I zoom out the image is placed…

brian.clear
- 5,277
- 2
- 41
- 62
-2
votes
1 answer
Inflate a custom View inside google map
How to inflate a custom view inside a google map fragment?
To add images/points on map we can use Markers or GroundOverlay, but if we need a custom view (for example, a list or an image with buttons), both classes receive a BitmapDescriptor on their…

E.Akio
- 2,249
- 3
- 14
- 27