You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: MapzenSDK/MZMapViewController.swift
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -542,7 +542,7 @@ open class MZMapViewController: UIViewController, LocationManagerDelegate {
542
542
Loads a map style synchronously on the main thread. Use the async methods instead of these in production apps.
543
543
544
544
- parameter style: The map style to load.
545
-
- parameter locale: The locale to use for the map's language.
545
+
- parameter l: The locale to use for the map's language.
546
546
- parameter sceneUpdates: The scene updates to make while loading the map style.
547
547
- throws: A MZError `apiKeyNotSet` error if an API Key has not been sent on the MapzenManager class.
548
548
*/
@@ -560,7 +560,7 @@ open class MZMapViewController: UIViewController, LocationManagerDelegate {
560
560
Loads the map style asynchronously. Recommended for production apps. If you have scene updates to apply, either use the other version of this method that allows you to pass in scene updates during load, or wait until onSceneLoaded is called to apply those updates.
561
561
562
562
- parameter style: The map style to load.
563
-
- parameter onSceneLoaded: Closure called on scene loaded.
563
+
- parameter onStyleLoaded: Closure called on scene loaded.
564
564
- throws: A MZError `apiKeyNotSet` error if an API Key has not been sent on the MapzenManager class.
@@ -601,9 +601,9 @@ open class MZMapViewController: UIViewController, LocationManagerDelegate {
601
601
Loads the map style asynchronously. Recommended for production apps. If you have scene updates to apply, either pass in the scene updates at the initial call, or wait until onSceneLoaded is called to apply those updates.
602
602
603
603
- parameter style: The map style to load.
604
-
- parameter locale: The locale to use for the map's language.
604
+
- parameter l: The locale to use for the map's language.
605
605
- parameter sceneUpdates: The scene updates to make while loading the map style.
606
-
- parameter onSceneLoaded: Closure called on scene loaded.
606
+
- parameter onStyleLoaded: Closure called on scene loaded.
607
607
- throws: A MZError `apiKeyNotSet` error if an API Key has not been sent on the MapzenManager class.
0 commit comments