Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I am making a custom Google Map and trying to get the ZoomControl to look like the one here, but if I use ZoomControlStyle.SMALL I get very small zoom controls (see first screenshot) and if I use ZoomControlStyle.LARGE I also get small zoom buttons but also the 'bar' (second screenshot).

I was wondering if there was a way to get the larger zoom control without the bar, I can't seem to find the option in the documentation and if you directly copy the code they supply, it shows up different than they display, oddly enough.

small zoom control ZoomControlStyle.SMALL

large zoom control ZoomControlStyle.LARGE

desired zoom control ???

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
714 views
Welcome To Ask or Share your Answers For Others

1 Answer

You need to set "signed_in=true" in the API include.

<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&libraries=geometry&signed_in=true"></script>

fiddle demonstating that UI

See the documentation on signed in maps for more details.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...