I want to use Scale controls in the google map for iOS,but I found nothing in the document of google map SDK for iOS about scale controls.Is there a Scale Controls in google map SDK for iOS ?
相关问题
- How to use Control.FromHandle?
- Core Data lightweight migration crashes after App
- How can I implement password recovery in an iPhone
- How do you change the color of the dotted line on
- State preservation and restoration strategies with
相关文章
- 现在使用swift开发ios应用好还是swift?
- UITableView dragging distance with UIRefreshContro
- TCC __TCCAccessRequest_block_invoke
- Where does a host app handle NSExtensionContext#co
- Swift - hide pickerView after value selected
- Avoiding “Sorry, we have no imagery here” with Goo
- How do you detect key up / key down events from a
- didBeginContact:(SKPhysicsContact *)contact not in
set your actualZoom after you alloc init your map:
the method:
You need to use zoom levels in GMSCameraPosition by providing lang, lat values.
GMSCameraPosition Class Reference
For the controls you need to use your custom controls -,+ and for zoom in and out. Use any of the Static Public Member Functions for adjusting the zoom levels on the GMSCameraPosition.
Then
[mapView_ setCamera:myCamera];
zoom level of the camera, read this
Hope that helps!!