├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── support_request.md ├── pull_request_template.md ├── snippet-bot.yml ├── stale.yml ├── sync-repo-settings.yaml └── workflows │ ├── build.yml │ └── dependabot.yml ├── .gitignore ├── AUTHORS ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── GoogleMaps-Swift ├── GoogleMapsSwiftDemos.xcodeproj │ └── project.pbxproj ├── GoogleMapsSwiftDemos │ ├── Info.plist │ ├── MapsDemoAssets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Maps-SDK-Demo-App_120.png │ │ │ ├── Maps-SDK-Demo-App_152.png │ │ │ ├── Maps-SDK-Demo-App_167.png │ │ │ ├── Maps-SDK-Demo-App_180.png │ │ │ └── Maps-SDK-Demo-App_76.png │ │ └── Contents.json │ ├── Resources │ │ ├── LaunchScreen.storyboard │ │ ├── Museum-Icons │ │ │ ├── h1.png │ │ │ ├── h1@2x.png │ │ │ ├── spitfire.png │ │ │ ├── spitfire@2x.png │ │ │ ├── voyager.png │ │ │ ├── voyager@2x.png │ │ │ ├── x29.png │ │ │ └── x29@2x.png │ │ ├── aeroplane.png │ │ ├── aeroplane@2x.png │ │ ├── ar.lproj │ │ │ └── InfoPlist.strings │ │ ├── argentina-large.png │ │ ├── argentina.png │ │ ├── arrow.png │ │ ├── arrow@2x.png │ │ ├── australia-large.png │ │ ├── australia-large@2x.png │ │ ├── australia.png │ │ ├── boat.png │ │ ├── boat@2x.png │ │ ├── botswana-large.png │ │ ├── botswana.png │ │ ├── bulgaria-large.png │ │ ├── bulgaria.png │ │ ├── ca.lproj │ │ │ └── InfoPlist.strings │ │ ├── cs.lproj │ │ │ └── InfoPlist.strings │ │ ├── da.lproj │ │ │ └── InfoPlist.strings │ │ ├── de.lproj │ │ │ └── InfoPlist.strings │ │ ├── el.lproj │ │ │ └── InfoPlist.strings │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ ├── en_GB.lproj │ │ │ └── InfoPlist.strings │ │ ├── es.lproj │ │ │ └── InfoPlist.strings │ │ ├── fi.lproj │ │ │ └── InfoPlist.strings │ │ ├── fr.lproj │ │ │ └── InfoPlist.strings │ │ ├── glow-marker.png │ │ ├── glow-marker@2x.png │ │ ├── he.lproj │ │ │ └── InfoPlist.strings │ │ ├── hr.lproj │ │ │ └── InfoPlist.strings │ │ ├── hu.lproj │ │ │ └── InfoPlist.strings │ │ ├── id.lproj │ │ │ └── InfoPlist.strings │ │ ├── it.lproj │ │ │ └── InfoPlist.strings │ │ ├── ja.lproj │ │ │ └── InfoPlist.strings │ │ ├── ko.lproj │ │ │ └── InfoPlist.strings │ │ ├── mapstyle-night.json │ │ ├── mapstyle-retro.json │ │ ├── mapstyle-silver.json │ │ ├── ms.lproj │ │ │ └── InfoPlist.strings │ │ ├── museum-exhibits.json │ │ ├── nb.lproj │ │ │ └── InfoPlist.strings │ │ ├── newark_nj_1922.jpg │ │ ├── nl.lproj │ │ │ └── InfoPlist.strings │ │ ├── pl.lproj │ │ │ └── InfoPlist.strings │ │ ├── popup_santa.png │ │ ├── popup_santa@2x.png │ │ ├── pt.lproj │ │ │ └── InfoPlist.strings │ │ ├── pt_PT.lproj │ │ │ └── InfoPlist.strings │ │ ├── ro.lproj │ │ │ └── InfoPlist.strings │ │ ├── ru.lproj │ │ │ └── InfoPlist.strings │ │ ├── sk.lproj │ │ │ └── InfoPlist.strings │ │ ├── step1.png │ │ ├── step1@2x.png │ │ ├── step2.png │ │ ├── step2@2x.png │ │ ├── step3.png │ │ ├── step3@2x.png │ │ ├── step4.png │ │ ├── step4@2x.png │ │ ├── step5.png │ │ ├── step5@2x.png │ │ ├── step6.png │ │ ├── step6@2x.png │ │ ├── step7.png │ │ ├── step7@2x.png │ │ ├── step8.png │ │ ├── step8@2x.png │ │ ├── sv.lproj │ │ │ └── InfoPlist.strings │ │ ├── th.lproj │ │ │ └── InfoPlist.strings │ │ ├── tr.lproj │ │ │ └── InfoPlist.strings │ │ ├── track.json │ │ ├── uk.lproj │ │ │ └── InfoPlist.strings │ │ ├── vi.lproj │ │ │ └── InfoPlist.strings │ │ ├── walking_dot@2x.png │ │ ├── walking_dot@3x.png │ │ ├── zh_CN.lproj │ │ │ └── InfoPlist.strings │ │ └── zh_TW.lproj │ │ │ └── InfoPlist.strings │ └── Swift │ │ ├── AppDelegate.swift │ │ ├── SDKConstants.swift │ │ ├── SampleListViewController.swift │ │ ├── Samples │ │ ├── AnimatedCurrentLocationViewController.swift │ │ ├── AnimatedUIViewMarkerViewController.swift │ │ ├── BasicMapViewController.swift │ │ ├── CameraViewController.swift │ │ ├── CustomIndoorViewController.swift │ │ ├── CustomMarkersViewController.swift │ │ ├── DoubleMapViewController.swift │ │ ├── FitBoundsViewController.swift │ │ ├── FixedPanoramaViewController.swift │ │ ├── FrameRateViewController.swift │ │ ├── GMSMapStyle+Bundle.swift │ │ ├── GeocoderViewController.swift │ │ ├── GestureControlViewController.swift │ │ ├── GradientPolylinesViewController.swift │ │ ├── GroundOverlayViewController.swift │ │ ├── IndoorMuseumNavigationViewController.swift │ │ ├── IndoorViewController.swift │ │ ├── MapLayerViewController.swift │ │ ├── MapTypesViewController.swift │ │ ├── MapZoomViewController.swift │ │ ├── MarkerEventsViewController.swift │ │ ├── MarkerInfoWindowViewController.swift │ │ ├── MarkerLayerViewController.swift │ │ ├── MarkersViewController.swift │ │ ├── MyLocationViewController.swift │ │ ├── PaddingBehaviorViewController.swift │ │ ├── PanoramaServiceController.swift │ │ ├── PanoramaViewController.swift │ │ ├── PolygonsViewController.swift │ │ ├── PolylinesViewController.swift │ │ ├── SampleLevel.swift │ │ ├── SampleMapStyle.swift │ │ ├── Samples.swift │ │ ├── SnapshotReadyViewController.swift │ │ ├── StructuredGeocoderViewController.swift │ │ ├── StyledMapViewController.swift │ │ ├── TileLayerViewController.swift │ │ ├── TrafficMapViewController.swift │ │ └── VisibleRegionViewController.swift │ │ └── SceneDelegate.swift ├── GoogleMapsSwiftXCFrameworkDemos.xcodeproj │ └── project.pbxproj ├── GoogleMapsSwiftXCFrameworkDemos │ ├── Info.plist │ ├── MapsDemoAssets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Maps-SDK-Demo-App_120.png │ │ │ ├── Maps-SDK-Demo-App_152.png │ │ │ ├── Maps-SDK-Demo-App_167.png │ │ │ ├── Maps-SDK-Demo-App_180.png │ │ │ └── Maps-SDK-Demo-App_76.png │ │ └── Contents.json │ ├── Resources │ │ ├── LaunchScreen.storyboard │ │ ├── Museum-Icons │ │ │ ├── h1.png │ │ │ ├── h1@2x.png │ │ │ ├── spitfire.png │ │ │ ├── spitfire@2x.png │ │ │ ├── voyager.png │ │ │ ├── voyager@2x.png │ │ │ ├── x29.png │ │ │ └── x29@2x.png │ │ ├── aeroplane.png │ │ ├── aeroplane@2x.png │ │ ├── ar.lproj │ │ │ └── InfoPlist.strings │ │ ├── argentina-large.png │ │ ├── argentina.png │ │ ├── arrow.png │ │ ├── arrow@2x.png │ │ ├── australia-large.png │ │ ├── australia-large@2x.png │ │ ├── australia.png │ │ ├── boat.png │ │ ├── boat@2x.png │ │ ├── botswana-large.png │ │ ├── botswana.png │ │ ├── bulgaria-large.png │ │ ├── bulgaria.png │ │ ├── ca.lproj │ │ │ └── InfoPlist.strings │ │ ├── cs.lproj │ │ │ └── InfoPlist.strings │ │ ├── da.lproj │ │ │ └── InfoPlist.strings │ │ ├── de.lproj │ │ │ └── InfoPlist.strings │ │ ├── el.lproj │ │ │ └── InfoPlist.strings │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ ├── en_GB.lproj │ │ │ └── InfoPlist.strings │ │ ├── es.lproj │ │ │ └── InfoPlist.strings │ │ ├── fi.lproj │ │ │ └── InfoPlist.strings │ │ ├── fr.lproj │ │ │ └── InfoPlist.strings │ │ ├── glow-marker.png │ │ ├── glow-marker@2x.png │ │ ├── he.lproj │ │ │ └── InfoPlist.strings │ │ ├── hr.lproj │ │ │ └── InfoPlist.strings │ │ ├── hu.lproj │ │ │ └── InfoPlist.strings │ │ ├── id.lproj │ │ │ └── InfoPlist.strings │ │ ├── it.lproj │ │ │ └── InfoPlist.strings │ │ ├── ja.lproj │ │ │ └── InfoPlist.strings │ │ ├── ko.lproj │ │ │ └── InfoPlist.strings │ │ ├── mapstyle-night.json │ │ ├── mapstyle-retro.json │ │ ├── mapstyle-silver.json │ │ ├── ms.lproj │ │ │ └── InfoPlist.strings │ │ ├── museum-exhibits.json │ │ ├── nb.lproj │ │ │ └── InfoPlist.strings │ │ ├── newark_nj_1922.jpg │ │ ├── nl.lproj │ │ │ └── InfoPlist.strings │ │ ├── pl.lproj │ │ │ └── InfoPlist.strings │ │ ├── popup_santa.png │ │ ├── popup_santa@2x.png │ │ ├── pt.lproj │ │ │ └── InfoPlist.strings │ │ ├── pt_PT.lproj │ │ │ └── InfoPlist.strings │ │ ├── ro.lproj │ │ │ └── InfoPlist.strings │ │ ├── ru.lproj │ │ │ └── InfoPlist.strings │ │ ├── sk.lproj │ │ │ └── InfoPlist.strings │ │ ├── step1.png │ │ ├── step1@2x.png │ │ ├── step2.png │ │ ├── step2@2x.png │ │ ├── step3.png │ │ ├── step3@2x.png │ │ ├── step4.png │ │ ├── step4@2x.png │ │ ├── step5.png │ │ ├── step5@2x.png │ │ ├── step6.png │ │ ├── step6@2x.png │ │ ├── step7.png │ │ ├── step7@2x.png │ │ ├── step8.png │ │ ├── step8@2x.png │ │ ├── sv.lproj │ │ │ └── InfoPlist.strings │ │ ├── th.lproj │ │ │ └── InfoPlist.strings │ │ ├── tr.lproj │ │ │ └── InfoPlist.strings │ │ ├── track.json │ │ ├── uk.lproj │ │ │ └── InfoPlist.strings │ │ ├── vi.lproj │ │ │ └── InfoPlist.strings │ │ ├── walking_dot@2x.png │ │ ├── walking_dot@3x.png │ │ ├── zh_CN.lproj │ │ │ └── InfoPlist.strings │ │ └── zh_TW.lproj │ │ │ └── InfoPlist.strings │ └── Swift │ │ ├── AppDelegate.swift │ │ ├── SDKConstants.swift │ │ ├── SampleListViewController.swift │ │ ├── Samples │ │ ├── AnimatedCurrentLocationViewController.swift │ │ ├── AnimatedUIViewMarkerViewController.swift │ │ ├── BasicMapViewController.swift │ │ ├── CameraViewController.swift │ │ ├── CustomIndoorViewController.swift │ │ ├── CustomMarkersViewController.swift │ │ ├── DataDrivenStylingBasicViewController.swift │ │ ├── DataDrivenStylingEventsViewController.swift │ │ ├── DataDrivenStylingSearchViewController.swift │ │ ├── DoubleMapViewController.swift │ │ ├── FitBoundsViewController.swift │ │ ├── FixedPanoramaViewController.swift │ │ ├── FrameRateViewController.swift │ │ ├── GMSMapStyle+Bundle.swift │ │ ├── GeocoderViewController.swift │ │ ├── GestureControlViewController.swift │ │ ├── GradientPolylinesViewController.swift │ │ ├── GroundOverlayViewController.swift │ │ ├── IndoorMuseumNavigationViewController.swift │ │ ├── IndoorViewController.swift │ │ ├── MapLayerViewController.swift │ │ ├── MapTypesViewController.swift │ │ ├── MapZoomViewController.swift │ │ ├── MarkerEventsViewController.swift │ │ ├── MarkerInfoWindowViewController.swift │ │ ├── MarkerLayerViewController.swift │ │ ├── MarkersViewController.swift │ │ ├── MyLocationViewController.swift │ │ ├── PaddingBehaviorViewController.swift │ │ ├── PanoramaServiceController.swift │ │ ├── PanoramaViewController.swift │ │ ├── PolygonsViewController.swift │ │ ├── PolylinesViewController.swift │ │ ├── SampleLevel.swift │ │ ├── SampleMapStyle.swift │ │ ├── Samples.swift │ │ ├── SnapshotReadyViewController.swift │ │ ├── StructuredGeocoderViewController.swift │ │ ├── StyledMapViewController.swift │ │ ├── TileLayerViewController.swift │ │ ├── TrafficMapViewController.swift │ │ ├── UIViewController+Extensions.swift │ │ └── VisibleRegionViewController.swift │ │ └── SceneDelegate.swift └── Podfile ├── GoogleMaps-SwiftUI ├── GoogleMaps-SwiftUI.xcodeproj │ └── project.pbxproj └── GoogleMaps-SwiftUI │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Dialog │ ├── Dialog.swift │ └── Helper │ │ ├── MapExample.swift │ │ └── MapExamplesViewModel.swift │ ├── GoogleMapView │ ├── GoogleMapView.swift │ └── GoogleMapViewDelegate.swift │ ├── GoogleMaps_SwiftUIApp.swift │ ├── Info.plist │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ └── Samples │ ├── BasicMap.swift │ ├── BasicMapWithMapID.swift │ ├── HandleMapEvents.swift │ ├── Helper │ ├── CLLocationCoordinate2D.swift │ └── GMSCameraPosition.swift │ ├── MapTypes.swift │ ├── MapWithContainer.swift │ ├── MapWithCustomCamera.swift │ ├── MapWithMarker.swift │ └── MapWithMarkers.swift ├── GoogleMaps ├── GoogleMapsDemos.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── GoogleMapsDemos.xcscheme ├── GoogleMapsDemos │ ├── BetaSamples │ │ ├── CloudBasedMapStylingViewController.h │ │ ├── CloudBasedMapStylingViewController.m │ │ ├── CollidingMarkersViewController.h │ │ ├── CollidingMarkersViewController.m │ │ ├── Samples+Beta.h │ │ ├── Samples+Beta.m │ │ ├── StampedPolylinesViewController.h │ │ └── StampedPolylinesViewController.m │ ├── DemoAppDelegate.h │ ├── DemoAppDelegate.m │ ├── DemoSceneDelegate.h │ ├── DemoSceneDelegate.m │ ├── Info.plist │ ├── MapsDemoAssets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Maps-SDK-Demo-App_120.png │ │ │ ├── Maps-SDK-Demo-App_152.png │ │ │ ├── Maps-SDK-Demo-App_167.png │ │ │ ├── Maps-SDK-Demo-App_180.png │ │ │ └── Maps-SDK-Demo-App_76.png │ │ └── Contents.json │ ├── MasterViewController.h │ ├── MasterViewController.m │ ├── Resources │ │ ├── LaunchScreen.storyboard │ │ ├── Museum-Icons │ │ │ ├── h1.png │ │ │ ├── h1@2x.png │ │ │ ├── spitfire.png │ │ │ ├── spitfire@2x.png │ │ │ ├── voyager.png │ │ │ ├── voyager@2x.png │ │ │ ├── x29.png │ │ │ └── x29@2x.png │ │ ├── aeroplane.png │ │ ├── aeroplane@2x.png │ │ ├── ar.lproj │ │ │ └── InfoPlist.strings │ │ ├── argentina-large.png │ │ ├── argentina.png │ │ ├── arrow.png │ │ ├── arrow@2x.png │ │ ├── australia-large.png │ │ ├── australia-large@2x.png │ │ ├── australia.png │ │ ├── boat.png │ │ ├── boat@2x.png │ │ ├── botswana-large.png │ │ ├── botswana.png │ │ ├── bulgaria-large.png │ │ ├── bulgaria.png │ │ ├── ca.lproj │ │ │ └── InfoPlist.strings │ │ ├── cs.lproj │ │ │ └── InfoPlist.strings │ │ ├── da.lproj │ │ │ └── InfoPlist.strings │ │ ├── de.lproj │ │ │ └── InfoPlist.strings │ │ ├── el.lproj │ │ │ └── InfoPlist.strings │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ ├── en_GB.lproj │ │ │ └── InfoPlist.strings │ │ ├── es.lproj │ │ │ └── InfoPlist.strings │ │ ├── fi.lproj │ │ │ └── InfoPlist.strings │ │ ├── fr.lproj │ │ │ └── InfoPlist.strings │ │ ├── glow-marker.png │ │ ├── glow-marker@2x.png │ │ ├── he.lproj │ │ │ └── InfoPlist.strings │ │ ├── hr.lproj │ │ │ └── InfoPlist.strings │ │ ├── hu.lproj │ │ │ └── InfoPlist.strings │ │ ├── id.lproj │ │ │ └── InfoPlist.strings │ │ ├── it.lproj │ │ │ └── InfoPlist.strings │ │ ├── ja.lproj │ │ │ └── InfoPlist.strings │ │ ├── ko.lproj │ │ │ └── InfoPlist.strings │ │ ├── mapstyle-night.json │ │ ├── mapstyle-retro.json │ │ ├── mapstyle-silver.json │ │ ├── ms.lproj │ │ │ └── InfoPlist.strings │ │ ├── museum-exhibits.json │ │ ├── nb.lproj │ │ │ └── InfoPlist.strings │ │ ├── newark_nj_1922.jpg │ │ ├── nl.lproj │ │ │ └── InfoPlist.strings │ │ ├── pl.lproj │ │ │ └── InfoPlist.strings │ │ ├── popup_santa.png │ │ ├── popup_santa@2x.png │ │ ├── pt.lproj │ │ │ └── InfoPlist.strings │ │ ├── pt_PT.lproj │ │ │ └── InfoPlist.strings │ │ ├── ro.lproj │ │ │ └── InfoPlist.strings │ │ ├── ru.lproj │ │ │ └── InfoPlist.strings │ │ ├── sk.lproj │ │ │ └── InfoPlist.strings │ │ ├── step1.png │ │ ├── step1@2x.png │ │ ├── step2.png │ │ ├── step2@2x.png │ │ ├── step3.png │ │ ├── step3@2x.png │ │ ├── step4.png │ │ ├── step4@2x.png │ │ ├── step5.png │ │ ├── step5@2x.png │ │ ├── step6.png │ │ ├── step6@2x.png │ │ ├── step7.png │ │ ├── step7@2x.png │ │ ├── step8.png │ │ ├── step8@2x.png │ │ ├── sv.lproj │ │ │ └── InfoPlist.strings │ │ ├── th.lproj │ │ │ └── InfoPlist.strings │ │ ├── tr.lproj │ │ │ └── InfoPlist.strings │ │ ├── track.json │ │ ├── uk.lproj │ │ │ └── InfoPlist.strings │ │ ├── vi.lproj │ │ │ └── InfoPlist.strings │ │ ├── walking_dot@2x.png │ │ ├── walking_dot@3x.png │ │ ├── zh_CN.lproj │ │ │ └── InfoPlist.strings │ │ └── zh_TW.lproj │ │ │ └── InfoPlist.strings │ ├── SDKDemoAPIKey.h │ ├── SampleListViewController.h │ ├── SampleListViewController.m │ ├── Samples │ │ ├── AnimatedCurrentLocationViewController.h │ │ ├── AnimatedCurrentLocationViewController.m │ │ ├── AnimatedUIViewMarkerViewController.h │ │ ├── AnimatedUIViewMarkerViewController.m │ │ ├── BasicMapViewController.h │ │ ├── BasicMapViewController.m │ │ ├── CameraViewController.h │ │ ├── CameraViewController.m │ │ ├── CustomIndoorViewController.h │ │ ├── CustomIndoorViewController.m │ │ ├── CustomMarkersViewController.h │ │ ├── CustomMarkersViewController.m │ │ ├── DoubleMapViewController.h │ │ ├── DoubleMapViewController.m │ │ ├── FitBoundsViewController.h │ │ ├── FitBoundsViewController.m │ │ ├── FixedPanoramaViewController.h │ │ ├── FixedPanoramaViewController.m │ │ ├── FrameRateViewController.h │ │ ├── FrameRateViewController.m │ │ ├── GeocoderViewController.h │ │ ├── GeocoderViewController.m │ │ ├── GestureControlViewController.h │ │ ├── GestureControlViewController.m │ │ ├── GradientPolylinesViewController.h │ │ ├── GradientPolylinesViewController.m │ │ ├── GroundOverlayViewController.h │ │ ├── GroundOverlayViewController.m │ │ ├── IndoorMuseumNavigationViewController.h │ │ ├── IndoorMuseumNavigationViewController.m │ │ ├── IndoorViewController.h │ │ ├── IndoorViewController.m │ │ ├── MapLayerViewController.h │ │ ├── MapLayerViewController.m │ │ ├── MapTypesViewController.h │ │ ├── MapTypesViewController.m │ │ ├── MapZoomViewController.h │ │ ├── MapZoomViewController.m │ │ ├── MarkerEventsViewController.h │ │ ├── MarkerEventsViewController.m │ │ ├── MarkerInfoWindowViewController.h │ │ ├── MarkerInfoWindowViewController.m │ │ ├── MarkerLayerViewController.h │ │ ├── MarkerLayerViewController.m │ │ ├── MarkersViewController.h │ │ ├── MarkersViewController.m │ │ ├── MyLocationViewController.h │ │ ├── MyLocationViewController.m │ │ ├── PaddingBehaviorViewController.h │ │ ├── PaddingBehaviorViewController.m │ │ ├── PanoramaViewController.h │ │ ├── PanoramaViewController.m │ │ ├── PolygonsViewController.h │ │ ├── PolygonsViewController.m │ │ ├── PolylinesViewController.h │ │ ├── PolylinesViewController.m │ │ ├── Samples.h │ │ ├── Samples.m │ │ ├── SnapshotReadyViewController.h │ │ ├── SnapshotReadyViewController.m │ │ ├── StampedPolylinesViewController.h │ │ ├── StampedPolylinesViewController.m │ │ ├── StructuredGeocoderViewController.h │ │ ├── StructuredGeocoderViewController.m │ │ ├── StyledMapViewController.h │ │ ├── StyledMapViewController.m │ │ ├── TileLayerViewController.h │ │ ├── TileLayerViewController.m │ │ ├── TrafficMapViewController.h │ │ ├── TrafficMapViewController.m │ │ ├── VisibleRegionViewController.h │ │ └── VisibleRegionViewController.m │ ├── UIViewController+GMSToastMessages.h │ ├── UIViewController+GMSToastMessages.m │ └── main.m ├── GoogleMapsXCFrameworkDemos.xcodeproj │ └── project.pbxproj ├── GoogleMapsXCFrameworkDemos │ ├── Common │ │ ├── GMSNotCapturingTouchesTableView.h │ │ ├── GMSNotCapturingTouchesTableView.m │ │ ├── UIViewController+GMSModals.h │ │ └── UIViewController+GMSModals.m │ ├── DemoAppDelegate.h │ ├── DemoAppDelegate.m │ ├── DemoSceneDelegate.h │ ├── DemoSceneDelegate.m │ ├── Info.plist │ ├── MapsDemoAssets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Maps-SDK-Demo-App_120.png │ │ │ ├── Maps-SDK-Demo-App_152.png │ │ │ ├── Maps-SDK-Demo-App_167.png │ │ │ ├── Maps-SDK-Demo-App_180.png │ │ │ └── Maps-SDK-Demo-App_76.png │ │ └── Contents.json │ ├── Resources │ │ ├── LaunchScreen.storyboard │ │ ├── Museum-Icons │ │ │ ├── h1.png │ │ │ ├── h1@2x.png │ │ │ ├── spitfire.png │ │ │ ├── spitfire@2x.png │ │ │ ├── voyager.png │ │ │ ├── voyager@2x.png │ │ │ ├── x29.png │ │ │ └── x29@2x.png │ │ ├── aeroplane.png │ │ ├── aeroplane@2x.png │ │ ├── ar.lproj │ │ │ └── InfoPlist.strings │ │ ├── argentina-large.png │ │ ├── argentina.png │ │ ├── arrow.png │ │ ├── arrow@2x.png │ │ ├── australia-large.png │ │ ├── australia-large@2x.png │ │ ├── australia.png │ │ ├── boat.png │ │ ├── boat@2x.png │ │ ├── botswana-large.png │ │ ├── botswana.png │ │ ├── bulgaria-large.png │ │ ├── bulgaria.png │ │ ├── ca.lproj │ │ │ └── InfoPlist.strings │ │ ├── cs.lproj │ │ │ └── InfoPlist.strings │ │ ├── da.lproj │ │ │ └── InfoPlist.strings │ │ ├── de.lproj │ │ │ └── InfoPlist.strings │ │ ├── el.lproj │ │ │ └── InfoPlist.strings │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ ├── en_GB.lproj │ │ │ └── InfoPlist.strings │ │ ├── es.lproj │ │ │ └── InfoPlist.strings │ │ ├── fi.lproj │ │ │ └── InfoPlist.strings │ │ ├── fr.lproj │ │ │ └── InfoPlist.strings │ │ ├── glow-marker.png │ │ ├── glow-marker@2x.png │ │ ├── he.lproj │ │ │ └── InfoPlist.strings │ │ ├── hr.lproj │ │ │ └── InfoPlist.strings │ │ ├── hu.lproj │ │ │ └── InfoPlist.strings │ │ ├── id.lproj │ │ │ └── InfoPlist.strings │ │ ├── it.lproj │ │ │ └── InfoPlist.strings │ │ ├── ja.lproj │ │ │ └── InfoPlist.strings │ │ ├── ko.lproj │ │ │ └── InfoPlist.strings │ │ ├── mapstyle-night.json │ │ ├── mapstyle-retro.json │ │ ├── mapstyle-silver.json │ │ ├── ms.lproj │ │ │ └── InfoPlist.strings │ │ ├── museum-exhibits.json │ │ ├── nb.lproj │ │ │ └── InfoPlist.strings │ │ ├── newark_nj_1922.jpg │ │ ├── nl.lproj │ │ │ └── InfoPlist.strings │ │ ├── pl.lproj │ │ │ └── InfoPlist.strings │ │ ├── popup_santa.png │ │ ├── popup_santa@2x.png │ │ ├── pt.lproj │ │ │ └── InfoPlist.strings │ │ ├── pt_PT.lproj │ │ │ └── InfoPlist.strings │ │ ├── ro.lproj │ │ │ └── InfoPlist.strings │ │ ├── ru.lproj │ │ │ └── InfoPlist.strings │ │ ├── sk.lproj │ │ │ └── InfoPlist.strings │ │ ├── step1.png │ │ ├── step1@2x.png │ │ ├── step2.png │ │ ├── step2@2x.png │ │ ├── step3.png │ │ ├── step3@2x.png │ │ ├── step4.png │ │ ├── step4@2x.png │ │ ├── step5.png │ │ ├── step5@2x.png │ │ ├── step6.png │ │ ├── step6@2x.png │ │ ├── step7.png │ │ ├── step7@2x.png │ │ ├── step8.png │ │ ├── step8@2x.png │ │ ├── sv.lproj │ │ │ └── InfoPlist.strings │ │ ├── th.lproj │ │ │ └── InfoPlist.strings │ │ ├── tr.lproj │ │ │ └── InfoPlist.strings │ │ ├── track.json │ │ ├── uk.lproj │ │ │ └── InfoPlist.strings │ │ ├── vi.lproj │ │ │ └── InfoPlist.strings │ │ ├── walking_dot@2x.png │ │ ├── walking_dot@3x.png │ │ ├── zh_CN.lproj │ │ │ └── InfoPlist.strings │ │ └── zh_TW.lproj │ │ │ └── InfoPlist.strings │ ├── SDKDemoAPIKey.h │ ├── SampleListViewController.h │ ├── SampleListViewController.m │ ├── Samples │ │ ├── AnimatedCurrentLocationViewController.h │ │ ├── AnimatedCurrentLocationViewController.m │ │ ├── AnimatedUIViewMarkerViewController.h │ │ ├── AnimatedUIViewMarkerViewController.m │ │ ├── BasicMapViewController.h │ │ ├── BasicMapViewController.m │ │ ├── CameraViewController.h │ │ ├── CameraViewController.m │ │ ├── CustomIndoorViewController.h │ │ ├── CustomIndoorViewController.m │ │ ├── CustomMarkersViewController.h │ │ ├── CustomMarkersViewController.m │ │ ├── DarkModeViewController.h │ │ ├── DarkModeViewController.m │ │ ├── DataDrivenStylingBasicViewController.h │ │ ├── DataDrivenStylingBasicViewController.m │ │ ├── DataDrivenStylingEventsViewController.h │ │ ├── DataDrivenStylingEventsViewController.m │ │ ├── DataDrivenStylingSearchViewController.h │ │ ├── DataDrivenStylingSearchViewController.m │ │ ├── DoubleMapViewController.h │ │ ├── DoubleMapViewController.m │ │ ├── FitBoundsViewController.h │ │ ├── FitBoundsViewController.m │ │ ├── FixedPanoramaViewController.h │ │ ├── FixedPanoramaViewController.m │ │ ├── FrameRateViewController.h │ │ ├── FrameRateViewController.m │ │ ├── GeocoderViewController.h │ │ ├── GeocoderViewController.m │ │ ├── GestureControlViewController.h │ │ ├── GestureControlViewController.m │ │ ├── GradientPolylinesViewController.h │ │ ├── GradientPolylinesViewController.m │ │ ├── GroundOverlayViewController.h │ │ ├── GroundOverlayViewController.m │ │ ├── IndoorMuseumNavigationViewController.h │ │ ├── IndoorMuseumNavigationViewController.m │ │ ├── IndoorViewController.h │ │ ├── IndoorViewController.m │ │ ├── MapLayerViewController.h │ │ ├── MapLayerViewController.m │ │ ├── MapTypesViewController.h │ │ ├── MapTypesViewController.m │ │ ├── MapZoomViewController.h │ │ ├── MapZoomViewController.m │ │ ├── MarkerEventsViewController.h │ │ ├── MarkerEventsViewController.m │ │ ├── MarkerInfoWindowViewController.h │ │ ├── MarkerInfoWindowViewController.m │ │ ├── MarkerLayerViewController.h │ │ ├── MarkerLayerViewController.m │ │ ├── MarkersViewController.h │ │ ├── MarkersViewController.m │ │ ├── MyLocationViewController.h │ │ ├── MyLocationViewController.m │ │ ├── PaddingBehaviorViewController.h │ │ ├── PaddingBehaviorViewController.m │ │ ├── PanoramaViewController.h │ │ ├── PanoramaViewController.m │ │ ├── PolygonsViewController.h │ │ ├── PolygonsViewController.m │ │ ├── PolylinesViewController.h │ │ ├── PolylinesViewController.m │ │ ├── Samples.h │ │ ├── Samples.m │ │ ├── SnapshotReadyViewController.h │ │ ├── SnapshotReadyViewController.m │ │ ├── StampedPolylinesViewController.h │ │ ├── StampedPolylinesViewController.m │ │ ├── StructuredGeocoderViewController.h │ │ ├── StructuredGeocoderViewController.m │ │ ├── StyledMapViewController.h │ │ ├── StyledMapViewController.m │ │ ├── TileLayerViewController.h │ │ ├── TileLayerViewController.m │ │ ├── TrafficMapViewController.h │ │ ├── TrafficMapViewController.m │ │ ├── VisibleRegionViewController.h │ │ └── VisibleRegionViewController.m │ └── main.m ├── Podfile └── README.GoogleMapsDemos ├── GoogleNavigation-Swift ├── GoogleNavSwiftXCFrameworkDemos.xcodeproj │ └── project.pbxproj ├── GoogleNavSwiftXCFrameworkDemos │ ├── Info.plist │ ├── Resources │ │ ├── Images │ │ │ ├── sdkdemos_icon-72.png │ │ │ ├── sdkdemos_icon-72@2x.png │ │ │ ├── sdkdemos_icon.png │ │ │ └── sdkdemos_icon@2x.png │ │ ├── ar.lproj │ │ │ └── InfoPlist.strings │ │ ├── ca.lproj │ │ │ └── InfoPlist.strings │ │ ├── cs.lproj │ │ │ └── InfoPlist.strings │ │ ├── da.lproj │ │ │ └── InfoPlist.strings │ │ ├── de.lproj │ │ │ └── InfoPlist.strings │ │ ├── el.lproj │ │ │ └── InfoPlist.strings │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ ├── en_AU.lproj │ │ │ └── InfoPlist.strings │ │ ├── en_GB.lproj │ │ │ └── InfoPlist.strings │ │ ├── en_IN.lproj │ │ │ └── InfoPlist.strings │ │ ├── es.lproj │ │ │ └── InfoPlist.strings │ │ ├── es_419.lproj │ │ │ └── InfoPlist.strings │ │ ├── es_MX.lproj │ │ │ └── InfoPlist.strings │ │ ├── fi.lproj │ │ │ └── InfoPlist.strings │ │ ├── fr.lproj │ │ │ └── InfoPlist.strings │ │ ├── fr_CA.lproj │ │ │ └── InfoPlist.strings │ │ ├── he.lproj │ │ │ └── InfoPlist.strings │ │ ├── hi.lproj │ │ │ └── InfoPlist.strings │ │ ├── hr.lproj │ │ │ └── InfoPlist.strings │ │ ├── hu.lproj │ │ │ └── InfoPlist.strings │ │ ├── id.lproj │ │ │ └── InfoPlist.strings │ │ ├── it.lproj │ │ │ └── InfoPlist.strings │ │ ├── ja.lproj │ │ │ └── InfoPlist.strings │ │ ├── ko.lproj │ │ │ └── InfoPlist.strings │ │ ├── ms.lproj │ │ │ └── InfoPlist.strings │ │ ├── nb.lproj │ │ │ └── InfoPlist.strings │ │ ├── nl.lproj │ │ │ └── InfoPlist.strings │ │ ├── pl.lproj │ │ │ └── InfoPlist.strings │ │ ├── pt.lproj │ │ │ └── InfoPlist.strings │ │ ├── pt_BR.lproj │ │ │ └── InfoPlist.strings │ │ ├── pt_PT.lproj │ │ │ └── InfoPlist.strings │ │ ├── ro.lproj │ │ │ └── InfoPlist.strings │ │ ├── ru.lproj │ │ │ └── InfoPlist.strings │ │ ├── sk.lproj │ │ │ └── InfoPlist.strings │ │ ├── sv.lproj │ │ │ └── InfoPlist.strings │ │ ├── th.lproj │ │ │ └── InfoPlist.strings │ │ ├── tr.lproj │ │ │ └── InfoPlist.strings │ │ ├── uk.lproj │ │ │ └── InfoPlist.strings │ │ ├── vi.lproj │ │ │ └── InfoPlist.strings │ │ ├── zh_CN.lproj │ │ │ └── InfoPlist.strings │ │ ├── zh_HK.lproj │ │ │ └── InfoPlist.strings │ │ └── zh_TW.lproj │ │ │ └── InfoPlist.strings │ └── Swift │ │ ├── AppDelegate.swift │ │ ├── CarPlay │ │ └── CarPlayApplicationSceneInformationController.swift │ │ ├── SDKDemoAPIKey.swift │ │ ├── SampleListViewController.swift │ │ ├── Samples.swift │ │ ├── Samples │ │ ├── BaseSampleViewController.swift │ │ ├── BasicNavigationViewController.swift │ │ ├── DataBackViewController.swift │ │ ├── DirectionsListViewController.swift │ │ ├── GMSRouteStatus+CustomString.swift │ │ ├── MenuUIHelpers.swift │ │ ├── NavigationSessionViewController.swift │ │ ├── NavigationUIOptionsViewController.swift │ │ ├── RoutingOptionsViewController.swift │ │ ├── SideOfRoadViewController.swift │ │ ├── StopoverViewController.swift │ │ └── Utils │ │ │ └── NavDemoSwitch.swift │ │ └── SceneDelegate.swift └── Podfile ├── GoogleNavigation ├── GoogleNavXCFrameworkDemos.xcodeproj │ └── project.pbxproj ├── GoogleNavXCFrameworkDemos │ ├── CarPlay │ │ ├── CarPlayApplicationSceneInformationController.h │ │ ├── CarPlayApplicationSceneInformationController.m │ │ ├── CarPlayApplicationSceneMapController.h │ │ ├── CarPlayApplicationSceneMapController.m │ │ ├── CarPlayConnectionManager.h │ │ ├── CarPlayConnectionManager.m │ │ ├── CarPlaySceneController.h │ │ ├── CarPlaySharedState.h │ │ └── CarPlaySharedState.m │ ├── DemoData.h │ ├── DemoData.m │ ├── Info.plist │ ├── METADATA │ ├── NavDemoAppDelegate.h │ ├── NavDemoAppDelegate.m │ ├── NavDemoMasterViewController.h │ ├── NavDemoMasterViewController.m │ ├── NavDemoSceneDelegate.h │ ├── NavDemoSceneDelegate.m │ ├── Resources │ │ ├── Images │ │ │ ├── sdkdemos_icon-72.png │ │ │ ├── sdkdemos_icon-72@2x.png │ │ │ ├── sdkdemos_icon.png │ │ │ └── sdkdemos_icon@2x.png │ │ ├── ar.lproj │ │ │ └── InfoPlist.strings │ │ ├── ca.lproj │ │ │ └── InfoPlist.strings │ │ ├── cs.lproj │ │ │ └── InfoPlist.strings │ │ ├── da.lproj │ │ │ └── InfoPlist.strings │ │ ├── de.lproj │ │ │ └── InfoPlist.strings │ │ ├── el.lproj │ │ │ └── InfoPlist.strings │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ ├── en_AU.lproj │ │ │ └── InfoPlist.strings │ │ ├── en_GB.lproj │ │ │ └── InfoPlist.strings │ │ ├── en_IN.lproj │ │ │ └── InfoPlist.strings │ │ ├── es.lproj │ │ │ └── InfoPlist.strings │ │ ├── es_419.lproj │ │ │ └── InfoPlist.strings │ │ ├── es_MX.lproj │ │ │ └── InfoPlist.strings │ │ ├── fi.lproj │ │ │ └── InfoPlist.strings │ │ ├── fr.lproj │ │ │ └── InfoPlist.strings │ │ ├── fr_CA.lproj │ │ │ └── InfoPlist.strings │ │ ├── he.lproj │ │ │ └── InfoPlist.strings │ │ ├── hi.lproj │ │ │ └── InfoPlist.strings │ │ ├── hr.lproj │ │ │ └── InfoPlist.strings │ │ ├── hu.lproj │ │ │ └── InfoPlist.strings │ │ ├── id.lproj │ │ │ └── InfoPlist.strings │ │ ├── it.lproj │ │ │ └── InfoPlist.strings │ │ ├── ja.lproj │ │ │ └── InfoPlist.strings │ │ ├── ko.lproj │ │ │ └── InfoPlist.strings │ │ ├── ms.lproj │ │ │ └── InfoPlist.strings │ │ ├── nb.lproj │ │ │ └── InfoPlist.strings │ │ ├── nl.lproj │ │ │ └── InfoPlist.strings │ │ ├── pl.lproj │ │ │ └── InfoPlist.strings │ │ ├── pt.lproj │ │ │ └── InfoPlist.strings │ │ ├── pt_BR.lproj │ │ │ └── InfoPlist.strings │ │ ├── pt_PT.lproj │ │ │ └── InfoPlist.strings │ │ ├── ro.lproj │ │ │ └── InfoPlist.strings │ │ ├── ru.lproj │ │ │ └── InfoPlist.strings │ │ ├── sk.lproj │ │ │ └── InfoPlist.strings │ │ ├── sv.lproj │ │ │ └── InfoPlist.strings │ │ ├── th.lproj │ │ │ └── InfoPlist.strings │ │ ├── tr.lproj │ │ │ └── InfoPlist.strings │ │ ├── uk.lproj │ │ │ └── InfoPlist.strings │ │ ├── vi.lproj │ │ │ └── InfoPlist.strings │ │ ├── zh_CN.lproj │ │ │ └── InfoPlist.strings │ │ ├── zh_HK.lproj │ │ │ └── InfoPlist.strings │ │ └── zh_TW.lproj │ │ │ └── InfoPlist.strings │ ├── SDKDemoAPIKey.h │ ├── Samples │ │ ├── BaseViewController.h │ │ ├── BaseViewController.m │ │ ├── DirectionsListViewController.h │ │ ├── DirectionsListViewController.m │ │ ├── NavUIOptionsViewController.h │ │ ├── NavUIOptionsViewController.m │ │ ├── NavigationSessionViewController.h │ │ ├── NavigationSessionViewController.m │ │ ├── RoutingOptionsViewController.h │ │ ├── RoutingOptionsViewController.m │ │ ├── SideOfRoadViewController.h │ │ ├── SideOfRoadViewController.m │ │ ├── StopoverViewController.h │ │ └── StopoverViewController.m │ ├── Utils │ │ ├── NavDemoStringUtils.h │ │ ├── NavDemoStringUtils.m │ │ ├── NavDemoSwitch.h │ │ ├── NavDemoSwitch.m │ │ ├── NavDemoUtilities.h │ │ └── NavDemoUtilities.m │ └── main.m └── Podfile ├── GooglePlaces-Swift ├── GooglePlacesSwiftDemos.xcodeproj │ └── project.pbxproj ├── GooglePlacesSwiftDemos │ ├── Info.plist │ ├── Resources │ │ ├── Base.lproj │ │ │ └── LaunchScreen.storyboard │ │ ├── PlacesDemoAssets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Places-API-Demo-App_120.png │ │ │ │ ├── Places-API-Demo-App_152.png │ │ │ │ ├── Places-API-Demo-App_167.png │ │ │ │ ├── Places-API-Demo-App_180.png │ │ │ │ └── Places-API-Demo-App_76.png │ │ │ └── Contents.json │ │ ├── ar.lproj │ │ │ └── Localizable.strings │ │ ├── ca.lproj │ │ │ └── Localizable.strings │ │ ├── cs.lproj │ │ │ └── Localizable.strings │ │ ├── da.lproj │ │ │ └── Localizable.strings │ │ ├── de.lproj │ │ │ └── Localizable.strings │ │ ├── el.lproj │ │ │ └── Localizable.strings │ │ ├── en.lproj │ │ │ └── Localizable.strings │ │ ├── en_AU.lproj │ │ │ └── Localizable.strings │ │ ├── en_GB.lproj │ │ │ └── Localizable.strings │ │ ├── en_IN.lproj │ │ │ └── Localizable.strings │ │ ├── es.lproj │ │ │ └── Localizable.strings │ │ ├── es_419.lproj │ │ │ └── Localizable.strings │ │ ├── es_MX.lproj │ │ │ └── Localizable.strings │ │ ├── fi.lproj │ │ │ └── Localizable.strings │ │ ├── fr.lproj │ │ │ └── Localizable.strings │ │ ├── fr_CA.lproj │ │ │ └── Localizable.strings │ │ ├── he.lproj │ │ │ └── Localizable.strings │ │ ├── hi.lproj │ │ │ └── Localizable.strings │ │ ├── hr.lproj │ │ │ └── Localizable.strings │ │ ├── hu.lproj │ │ │ └── Localizable.strings │ │ ├── id.lproj │ │ │ └── Localizable.strings │ │ ├── it.lproj │ │ │ └── Localizable.strings │ │ ├── ja.lproj │ │ │ └── Localizable.strings │ │ ├── ko.lproj │ │ │ └── Localizable.strings │ │ ├── ms.lproj │ │ │ └── Localizable.strings │ │ ├── nb.lproj │ │ │ └── Localizable.strings │ │ ├── nl.lproj │ │ │ └── Localizable.strings │ │ ├── pl.lproj │ │ │ └── Localizable.strings │ │ ├── pt.lproj │ │ │ └── Localizable.strings │ │ ├── pt_BR.lproj │ │ │ └── Localizable.strings │ │ ├── pt_PT.lproj │ │ │ └── Localizable.strings │ │ ├── ro.lproj │ │ │ └── Localizable.strings │ │ ├── ru.lproj │ │ │ └── Localizable.strings │ │ ├── sk.lproj │ │ │ └── Localizable.strings │ │ ├── sv.lproj │ │ │ └── Localizable.strings │ │ ├── th.lproj │ │ │ └── Localizable.strings │ │ ├── tr.lproj │ │ │ └── Localizable.strings │ │ ├── uk.lproj │ │ │ └── Localizable.strings │ │ ├── vi.lproj │ │ │ └── Localizable.strings │ │ ├── zh_CN.lproj │ │ │ └── Localizable.strings │ │ ├── zh_HK.lproj │ │ │ └── Localizable.strings │ │ └── zh_TW.lproj │ │ │ └── Localizable.strings │ └── Swift │ │ ├── AppDelegate.swift │ │ ├── AutocompleteConfiguration.swift │ │ ├── ConfigurationViewController.swift │ │ ├── SDKDemoAPIKey.swift │ │ ├── SampleDatas.swift │ │ ├── SampleListViewController.swift │ │ ├── Samples │ │ ├── Autocomplete │ │ │ ├── AutocompleteBaseViewController.swift │ │ │ ├── AutocompleteModalViewController.swift │ │ │ ├── AutocompletePushViewController.swift │ │ │ ├── AutocompleteWithCustomColors.swift │ │ │ ├── AutocompleteWithSearchViewController.swift │ │ │ ├── AutocompleteWithTextFieldController.swift │ │ │ └── PagingPhotoView.swift │ │ └── FindPlaceLikelihoodListViewController.swift │ │ └── SceneDelegate.swift ├── GooglePlacesSwiftXCFrameworkDemos.xcodeproj │ └── project.pbxproj ├── GooglePlacesSwiftXCFrameworkDemos │ ├── Info.plist │ ├── Resources │ │ ├── Base.lproj │ │ │ └── LaunchScreen.storyboard │ │ ├── PlacesDemoAssets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Places-API-Demo-App_120.png │ │ │ │ ├── Places-API-Demo-App_152.png │ │ │ │ ├── Places-API-Demo-App_167.png │ │ │ │ ├── Places-API-Demo-App_180.png │ │ │ │ ├── Places-API-Demo-App_76.png │ │ │ │ └── iTunesArtwork-1024.png │ │ │ └── Contents.json │ │ ├── ar.lproj │ │ │ └── Localizable.strings │ │ ├── ca.lproj │ │ │ └── Localizable.strings │ │ ├── cs.lproj │ │ │ └── Localizable.strings │ │ ├── da.lproj │ │ │ └── Localizable.strings │ │ ├── de.lproj │ │ │ └── Localizable.strings │ │ ├── el.lproj │ │ │ └── Localizable.strings │ │ ├── en.lproj │ │ │ └── Localizable.strings │ │ ├── en_AU.lproj │ │ │ └── Localizable.strings │ │ ├── en_GB.lproj │ │ │ └── Localizable.strings │ │ ├── en_IN.lproj │ │ │ └── Localizable.strings │ │ ├── es.lproj │ │ │ └── Localizable.strings │ │ ├── es_419.lproj │ │ │ └── Localizable.strings │ │ ├── es_MX.lproj │ │ │ └── Localizable.strings │ │ ├── fi.lproj │ │ │ └── Localizable.strings │ │ ├── fr.lproj │ │ │ └── Localizable.strings │ │ ├── fr_CA.lproj │ │ │ └── Localizable.strings │ │ ├── he.lproj │ │ │ └── Localizable.strings │ │ ├── hi.lproj │ │ │ └── Localizable.strings │ │ ├── hr.lproj │ │ │ └── Localizable.strings │ │ ├── hu.lproj │ │ │ └── Localizable.strings │ │ ├── id.lproj │ │ │ └── Localizable.strings │ │ ├── it.lproj │ │ │ └── Localizable.strings │ │ ├── ja.lproj │ │ │ └── Localizable.strings │ │ ├── ko.lproj │ │ │ └── Localizable.strings │ │ ├── ms.lproj │ │ │ └── Localizable.strings │ │ ├── nb.lproj │ │ │ └── Localizable.strings │ │ ├── nl.lproj │ │ │ └── Localizable.strings │ │ ├── pl.lproj │ │ │ └── Localizable.strings │ │ ├── pt.lproj │ │ │ └── Localizable.strings │ │ ├── pt_BR.lproj │ │ │ └── Localizable.strings │ │ ├── pt_PT.lproj │ │ │ └── Localizable.strings │ │ ├── ro.lproj │ │ │ └── Localizable.strings │ │ ├── ru.lproj │ │ │ └── Localizable.strings │ │ ├── sk.lproj │ │ │ └── Localizable.strings │ │ ├── sv.lproj │ │ │ └── Localizable.strings │ │ ├── th.lproj │ │ │ └── Localizable.strings │ │ ├── tr.lproj │ │ │ └── Localizable.strings │ │ ├── uk.lproj │ │ │ └── Localizable.strings │ │ ├── vi.lproj │ │ │ └── Localizable.strings │ │ ├── zh_CN.lproj │ │ │ └── Localizable.strings │ │ ├── zh_HK.lproj │ │ │ └── Localizable.strings │ │ └── zh_TW.lproj │ │ │ └── Localizable.strings │ └── Swift │ │ ├── AppDelegate.swift │ │ ├── AutocompleteConfiguration.swift │ │ ├── ConfigurationViewController.swift │ │ ├── SDKDemoAPIKey.swift │ │ ├── SampleDatas.swift │ │ ├── SampleListViewController.swift │ │ ├── Samples │ │ ├── Autocomplete │ │ │ ├── AutocompleteBaseViewController.swift │ │ │ ├── AutocompleteModalViewController.swift │ │ │ ├── AutocompletePushViewController.swift │ │ │ ├── AutocompleteWithCustomColors.swift │ │ │ ├── AutocompleteWithSearchViewController.swift │ │ │ ├── AutocompleteWithTextFieldController.swift │ │ │ └── PagingPhotoView.swift │ │ ├── FindPlaceLikelihoodListViewController.swift │ │ ├── SearchNearby │ │ │ ├── ParameterInputTextField.swift │ │ │ └── SearchNearbyViewController.swift │ │ └── TextSearchViewController.swift │ │ └── SceneDelegate.swift └── Podfile ├── GooglePlaces ├── GooglePlacesDemos.xcodeproj │ └── project.pbxproj ├── GooglePlacesDemos │ ├── DemoAppDelegate.h │ ├── DemoAppDelegate.m │ ├── DemoData.h │ ├── DemoData.m │ ├── DemoListViewController.h │ ├── DemoListViewController.m │ ├── DemoSceneDelegate.h │ ├── DemoSceneDelegate.m │ ├── Info.plist │ ├── Resources │ │ ├── Base.lproj │ │ │ └── LaunchScreen.storyboard │ │ ├── PlacesDemoAssets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Places-API-Demo-App_120.png │ │ │ │ ├── Places-API-Demo-App_152.png │ │ │ │ ├── Places-API-Demo-App_167.png │ │ │ │ ├── Places-API-Demo-App_180.png │ │ │ │ └── Places-API-Demo-App_76.png │ │ │ └── Contents.json │ │ ├── ar.lproj │ │ │ └── Localizable.strings │ │ ├── ca.lproj │ │ │ └── Localizable.strings │ │ ├── cs.lproj │ │ │ └── Localizable.strings │ │ ├── da.lproj │ │ │ └── Localizable.strings │ │ ├── de.lproj │ │ │ └── Localizable.strings │ │ ├── el.lproj │ │ │ └── Localizable.strings │ │ ├── en.lproj │ │ │ └── Localizable.strings │ │ ├── en_AU.lproj │ │ │ └── Localizable.strings │ │ ├── en_GB.lproj │ │ │ └── Localizable.strings │ │ ├── en_IN.lproj │ │ │ └── Localizable.strings │ │ ├── es.lproj │ │ │ └── Localizable.strings │ │ ├── es_419.lproj │ │ │ └── Localizable.strings │ │ ├── es_MX.lproj │ │ │ └── Localizable.strings │ │ ├── fi.lproj │ │ │ └── Localizable.strings │ │ ├── fr.lproj │ │ │ └── Localizable.strings │ │ ├── fr_CA.lproj │ │ │ └── Localizable.strings │ │ ├── he.lproj │ │ │ └── Localizable.strings │ │ ├── hi.lproj │ │ │ └── Localizable.strings │ │ ├── hr.lproj │ │ │ └── Localizable.strings │ │ ├── hu.lproj │ │ │ └── Localizable.strings │ │ ├── id.lproj │ │ │ └── Localizable.strings │ │ ├── it.lproj │ │ │ └── Localizable.strings │ │ ├── ja.lproj │ │ │ └── Localizable.strings │ │ ├── ko.lproj │ │ │ └── Localizable.strings │ │ ├── ms.lproj │ │ │ └── Localizable.strings │ │ ├── nb.lproj │ │ │ └── Localizable.strings │ │ ├── nl.lproj │ │ │ └── Localizable.strings │ │ ├── pl.lproj │ │ │ └── Localizable.strings │ │ ├── pt.lproj │ │ │ └── Localizable.strings │ │ ├── pt_BR.lproj │ │ │ └── Localizable.strings │ │ ├── pt_PT.lproj │ │ │ └── Localizable.strings │ │ ├── ro.lproj │ │ │ └── Localizable.strings │ │ ├── ru.lproj │ │ │ └── Localizable.strings │ │ ├── sk.lproj │ │ │ └── Localizable.strings │ │ ├── sv.lproj │ │ │ └── Localizable.strings │ │ ├── th.lproj │ │ │ └── Localizable.strings │ │ ├── tr.lproj │ │ │ └── Localizable.strings │ │ ├── uk.lproj │ │ │ └── Localizable.strings │ │ ├── vi.lproj │ │ │ └── Localizable.strings │ │ ├── zh_CN.lproj │ │ │ └── Localizable.strings │ │ ├── zh_HK.lproj │ │ │ └── Localizable.strings │ │ └── zh_TW.lproj │ │ │ └── Localizable.strings │ ├── SDKDemoAPIKey.h │ ├── Samples │ │ ├── Autocomplete │ │ │ ├── AutocompleteBaseViewController.h │ │ │ ├── AutocompleteBaseViewController.m │ │ │ ├── AutocompleteModalViewController.h │ │ │ ├── AutocompleteModalViewController.m │ │ │ ├── AutocompletePushViewController.h │ │ │ ├── AutocompletePushViewController.m │ │ │ ├── AutocompleteWithCustomColors.h │ │ │ ├── AutocompleteWithCustomColors.m │ │ │ ├── AutocompleteWithSearchViewController.h │ │ │ ├── AutocompleteWithSearchViewController.m │ │ │ ├── AutocompleteWithTextFieldController.h │ │ │ └── AutocompleteWithTextFieldController.m │ │ ├── FindPlaceLikelihoodListViewController.h │ │ ├── FindPlaceLikelihoodListViewController.m │ │ ├── PagingPhotoView.h │ │ └── PagingPhotoView.m │ ├── Support │ │ ├── BaseDemoViewController.h │ │ └── BaseDemoViewController.m │ └── main.m ├── GooglePlacesXCFrameworkDemos.xcodeproj │ └── project.pbxproj ├── GooglePlacesXCFrameworkDemos │ ├── DemoAppDelegate.h │ ├── DemoAppDelegate.m │ ├── DemoData.h │ ├── DemoData.m │ ├── DemoListViewController.h │ ├── DemoListViewController.m │ ├── DemoSceneDelegate.h │ ├── DemoSceneDelegate.m │ ├── Info.plist │ ├── Resources │ │ ├── Base.lproj │ │ │ └── LaunchScreen.storyboard │ │ ├── PlacesDemoAssets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Places-API-Demo-App_120.png │ │ │ │ ├── Places-API-Demo-App_152.png │ │ │ │ ├── Places-API-Demo-App_167.png │ │ │ │ ├── Places-API-Demo-App_180.png │ │ │ │ ├── Places-API-Demo-App_76.png │ │ │ │ └── iTunesArtwork-1024.png │ │ │ └── Contents.json │ │ ├── ar.lproj │ │ │ └── Localizable.strings │ │ ├── ca.lproj │ │ │ └── Localizable.strings │ │ ├── cs.lproj │ │ │ └── Localizable.strings │ │ ├── da.lproj │ │ │ └── Localizable.strings │ │ ├── de.lproj │ │ │ └── Localizable.strings │ │ ├── el.lproj │ │ │ └── Localizable.strings │ │ ├── en.lproj │ │ │ └── Localizable.strings │ │ ├── en_AU.lproj │ │ │ └── Localizable.strings │ │ ├── en_GB.lproj │ │ │ └── Localizable.strings │ │ ├── en_IN.lproj │ │ │ └── Localizable.strings │ │ ├── es.lproj │ │ │ └── Localizable.strings │ │ ├── es_419.lproj │ │ │ └── Localizable.strings │ │ ├── es_MX.lproj │ │ │ └── Localizable.strings │ │ ├── fi.lproj │ │ │ └── Localizable.strings │ │ ├── fr.lproj │ │ │ └── Localizable.strings │ │ ├── fr_CA.lproj │ │ │ └── Localizable.strings │ │ ├── he.lproj │ │ │ └── Localizable.strings │ │ ├── hi.lproj │ │ │ └── Localizable.strings │ │ ├── hr.lproj │ │ │ └── Localizable.strings │ │ ├── hu.lproj │ │ │ └── Localizable.strings │ │ ├── id.lproj │ │ │ └── Localizable.strings │ │ ├── it.lproj │ │ │ └── Localizable.strings │ │ ├── ja.lproj │ │ │ └── Localizable.strings │ │ ├── ko.lproj │ │ │ └── Localizable.strings │ │ ├── ms.lproj │ │ │ └── Localizable.strings │ │ ├── nb.lproj │ │ │ └── Localizable.strings │ │ ├── nl.lproj │ │ │ └── Localizable.strings │ │ ├── pl.lproj │ │ │ └── Localizable.strings │ │ ├── pt.lproj │ │ │ └── Localizable.strings │ │ ├── pt_BR.lproj │ │ │ └── Localizable.strings │ │ ├── pt_PT.lproj │ │ │ └── Localizable.strings │ │ ├── ro.lproj │ │ │ └── Localizable.strings │ │ ├── ru.lproj │ │ │ └── Localizable.strings │ │ ├── sk.lproj │ │ │ └── Localizable.strings │ │ ├── sv.lproj │ │ │ └── Localizable.strings │ │ ├── th.lproj │ │ │ └── Localizable.strings │ │ ├── tr.lproj │ │ │ └── Localizable.strings │ │ ├── uk.lproj │ │ │ └── Localizable.strings │ │ ├── vi.lproj │ │ │ └── Localizable.strings │ │ ├── zh_CN.lproj │ │ │ └── Localizable.strings │ │ ├── zh_HK.lproj │ │ │ └── Localizable.strings │ │ └── zh_TW.lproj │ │ │ └── Localizable.strings │ ├── SDKDemoAPIKey.h │ ├── Samples │ │ ├── Autocomplete │ │ │ ├── AutocompleteBaseViewController.h │ │ │ ├── AutocompleteBaseViewController.m │ │ │ ├── AutocompleteModalViewController.h │ │ │ ├── AutocompleteModalViewController.m │ │ │ ├── AutocompletePushViewController.h │ │ │ ├── AutocompletePushViewController.m │ │ │ ├── AutocompleteWithCustomColors.h │ │ │ ├── AutocompleteWithCustomColors.m │ │ │ ├── AutocompleteWithSearchViewController.h │ │ │ ├── AutocompleteWithSearchViewController.m │ │ │ ├── AutocompleteWithTextFieldController.h │ │ │ └── AutocompleteWithTextFieldController.m │ │ ├── FindPlaceLikelihoodListViewController.h │ │ ├── FindPlaceLikelihoodListViewController.m │ │ ├── PagingPhotoView.h │ │ ├── PagingPhotoView.m │ │ ├── SearchNearbyViewController.h │ │ ├── SearchNearbyViewController.m │ │ ├── TextSearchViewController.h │ │ └── TextSearchViewController.m │ ├── Support │ │ ├── BaseDemoViewController.h │ │ └── BaseDemoViewController.m │ └── main.m ├── Podfile └── README.GooglePlacesDemos ├── LICENSE ├── LICENSE.txt ├── MapsAndPlacesDemo ├── MapsAndPlacesDemo.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── MapsAndPlacesDemo.xcscheme ├── MapsAndPlacesDemo │ ├── ApiKeys.swift │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Maps-SDK-Demo-App_120.png │ │ │ ├── Maps-SDK-Demo-App_152.png │ │ │ ├── Maps-SDK-Demo-App_167.png │ │ │ ├── Maps-SDK-Demo-App_180.png │ │ │ └── Maps-SDK-Demo-App_76.png │ │ ├── Contents.json │ │ └── Maps Logo.imageset │ │ │ ├── Contents.json │ │ │ └── Maps-SDK-Demo-App_180.png │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Clusters.swift │ ├── Info.plist │ ├── LocationImageGenerator.swift │ ├── MDCFloatingActionButtonExtension.swift │ ├── MainViewController.swift │ ├── MapThemes.swift │ ├── OverlayController.swift │ ├── PopUpViewController.swift │ ├── SceneDelegate.swift │ ├── StreetViewController.swift │ ├── UIImageExtension.swift │ ├── UITextViewExtension.swift │ └── WelcomeViewController.swift ├── Podfile ├── README.md ├── dataset.json └── raw_input.txt ├── README.md ├── SECURITY.md ├── copy_pod_try.sh ├── snippets ├── Cartfile ├── MapsBetaSnippets │ ├── Cartfile │ ├── MapsBetaSnippets.xcodeproj │ │ └── project.pbxproj │ ├── MapsBetaSnippets │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── CloudBasedMapStylingViewController.h │ │ ├── CloudBasedMapStylingViewController.m │ │ ├── CustomPOIBehaviorViewController.h │ │ ├── CustomPOIBehaviorViewController.m │ │ ├── Info.plist │ │ ├── MapsBetaSnippets-Bridging-Header.h │ │ ├── PolylineCustomizationViewController.h │ │ ├── PolylineCustomizationViewController.m │ │ ├── SceneDelegate.swift │ │ ├── Swift │ │ │ ├── CloudBasedMapStylingViewController.swift │ │ │ ├── CustomPOIBehaviorViewController.swift │ │ │ └── PolylineCustomizationViewController.swift │ │ └── ViewController.swift │ └── Podfile ├── MapsSnippets │ ├── MapsSnippets.xcodeproj │ │ └── project.pbxproj │ ├── MapsSnippets │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── CameraAndView.h │ │ ├── CameraAndView.m │ │ ├── ControlsAndGestures.h │ │ ├── ControlsAndGestures.m │ │ ├── Events.h │ │ ├── Events.m │ │ ├── GroundOverlays.h │ │ ├── GroundOverlays.m │ │ ├── Info.plist │ │ ├── MapObjects.h │ │ ├── MapObjects.m │ │ ├── MapStyling.h │ │ ├── MapStyling.m │ │ ├── MapWithMarkerViewController.h │ │ ├── MapWithMarkerViewController.m │ │ ├── Markers.h │ │ ├── Markers.m │ │ ├── POI.h │ │ ├── POI.m │ │ ├── SceneDelegate.h │ │ ├── SceneDelegate.m │ │ ├── Shapes.h │ │ ├── Shapes.m │ │ ├── StreetView.h │ │ ├── StreetView.m │ │ ├── Swift │ │ │ ├── CameraAndView.swift │ │ │ ├── ControlsAndGestures.swift │ │ │ ├── Events.swift │ │ │ ├── GroundOverlays.swift │ │ │ ├── MapObjects.swift │ │ │ ├── MapStyling.swift │ │ │ ├── MapWithMarkerViewController.swift │ │ │ ├── MapsSnippets-Bridging-Header.h │ │ │ ├── Markers.swift │ │ │ ├── POI.swift │ │ │ ├── Shapes.swift │ │ │ ├── StreetView.swift │ │ │ └── TileLayers.swift │ │ ├── TileLayers.h │ │ ├── TileLayers.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m │ └── Podfile ├── MapsUtilsSnippets │ ├── MapsUtilsSnippets.xcodeproj │ │ └── project.pbxproj │ ├── MapsUtilsSnippets │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── GeoJSON.h │ │ ├── GeoJSON.m │ │ ├── Heatmap.h │ │ ├── Heatmap.m │ │ ├── Info.plist │ │ ├── KML.h │ │ ├── KML.m │ │ ├── MarkerClustering.h │ │ ├── MarkerClustering.m │ │ ├── QuadTree.h │ │ ├── QuadTree.m │ │ ├── SceneDelegate.h │ │ ├── SceneDelegate.m │ │ ├── Swift │ │ │ ├── GeoJSON.swift │ │ │ ├── Heatmap.swift │ │ │ ├── KML.swift │ │ │ ├── MapsUtilsSnippets-Bridging-Header.h │ │ │ ├── MarkerClustering.swift │ │ │ └── QuadTree.swift │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m │ └── Podfile ├── PlacesSnippets │ ├── PlacesSnippets.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── PlacesSnippets.xcscheme │ ├── PlacesSnippets │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── GetStartedViewController.h │ │ ├── GetStartedViewController.m │ │ ├── Info.plist │ │ ├── PlaceAutocompleteViewController.h │ │ ├── PlaceAutocompleteViewController.m │ │ ├── SceneDelegate.h │ │ ├── SceneDelegate.m │ │ ├── Swift │ │ │ ├── GetStartedViewController.swift │ │ │ ├── PlaceAutocompleteViewController.swift │ │ │ └── PlacesSnippets-Bridging-Header.h │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m │ └── Podfile ├── Podfile └── XCFrameworkSnippets │ └── Cartfile └── tutorials ├── current-place-on-map ├── Podfile ├── current-place-on-map.xcodeproj │ └── project.pbxproj └── current-place-on-map │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── MapViewController.h │ ├── MapViewController.m │ ├── MapViewController.swift │ ├── PlacesViewController.h │ ├── PlacesViewController.m │ ├── PlacesViewController.swift │ └── current-place-on-map-Bridging-Header.h ├── map-with-marker ├── Podfile ├── README.md ├── map-with-marker.xcodeproj │ └── project.pbxproj └── map-with-marker │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ ├── ViewController.swift │ └── map-with-marker-Bridging-Header.h └── places-address-form ├── Podfile ├── README.md ├── places-address-form.xcodeproj └── project.pbxproj └── places-address-form ├── AppDelegate.swift ├── Assets.xcassets └── AppIcon.appiconset │ └── Contents.json ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── Info.plist └── ViewController.swift /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/.github/ISSUE_TEMPLATE/support_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/snippet-bot.yml: -------------------------------------------------------------------------------- 1 | alwaysCreateStatusCheck: true 2 | -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/sync-repo-settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/.github/sync-repo-settings.yaml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/.github/workflows/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/AUTHORS -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Info.plist -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/Museum-Icons/h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/Museum-Icons/h1.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/Museum-Icons/x29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/Museum-Icons/x29.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/aeroplane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/aeroplane.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/aeroplane@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/aeroplane@2x.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/ar.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/argentina-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/argentina-large.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/argentina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/argentina.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/arrow.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/arrow@2x.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/australia-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/australia-large.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/australia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/australia.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/boat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/boat.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/boat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/boat@2x.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/botswana-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/botswana-large.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/botswana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/botswana.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/bulgaria-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/bulgaria-large.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/bulgaria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/bulgaria.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/ca.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/cs.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/da.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/de.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/el.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/en_GB.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/es.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/fi.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/fr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/glow-marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/glow-marker.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/glow-marker@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/glow-marker@2x.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/he.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/hr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/hu.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/id.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/it.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/ja.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/ko.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/mapstyle-night.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/mapstyle-night.json -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/mapstyle-retro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/mapstyle-retro.json -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/mapstyle-silver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/mapstyle-silver.json -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/ms.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/museum-exhibits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/museum-exhibits.json -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/nb.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/newark_nj_1922.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/newark_nj_1922.jpg -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/nl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/pl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/popup_santa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/popup_santa.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/popup_santa@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/popup_santa@2x.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/pt.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/pt_PT.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/ro.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/ru.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/sk.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/step1.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/step1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/step1@2x.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/step2.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/step2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/step2@2x.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/step3.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/step3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/step3@2x.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/step4.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/step4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/step4@2x.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/step5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/step5.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/step5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/step5@2x.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/step6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/step6.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/step6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/step6@2x.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/step7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/step7.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/step7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/step7@2x.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/step8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/step8.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/step8@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/step8@2x.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/sv.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/th.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/tr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/track.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/track.json -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/uk.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/vi.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/walking_dot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/walking_dot@2x.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/walking_dot@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/walking_dot@3x.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/zh_CN.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Resources/zh_TW.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Swift/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Swift/AppDelegate.swift -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Swift/SDKConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Swift/SDKConstants.swift -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Swift/Samples/SampleLevel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Swift/Samples/SampleLevel.swift -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Swift/Samples/Samples.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Swift/Samples/Samples.swift -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftDemos/Swift/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftDemos/Swift/SceneDelegate.swift -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Info.plist -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/ar.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/arrow.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/boat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/boat.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/ca.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/cs.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/da.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/de.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/el.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/en_GB.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/es.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/fi.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/fr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/he.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/hr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/hu.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/id.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/it.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/ja.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/ko.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/ms.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/nb.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/nl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/pl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/pt.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/pt_PT.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/ro.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/ru.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/sk.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/step1.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/step2.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/step3.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/step4.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/step5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/step5.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/step6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/step6.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/step7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/step7.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/step8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/step8.png -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/sv.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/th.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/tr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/track.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/track.json -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/uk.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/vi.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/zh_CN.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/GoogleMapsSwiftXCFrameworkDemos/Resources/zh_TW.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps-Swift/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-Swift/Podfile -------------------------------------------------------------------------------- /GoogleMaps-SwiftUI/GoogleMaps-SwiftUI.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-SwiftUI/GoogleMaps-SwiftUI.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GoogleMaps-SwiftUI/GoogleMaps-SwiftUI/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-SwiftUI/GoogleMaps-SwiftUI/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /GoogleMaps-SwiftUI/GoogleMaps-SwiftUI/Dialog/Dialog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-SwiftUI/GoogleMaps-SwiftUI/Dialog/Dialog.swift -------------------------------------------------------------------------------- /GoogleMaps-SwiftUI/GoogleMaps-SwiftUI/Dialog/Helper/MapExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-SwiftUI/GoogleMaps-SwiftUI/Dialog/Helper/MapExample.swift -------------------------------------------------------------------------------- /GoogleMaps-SwiftUI/GoogleMaps-SwiftUI/GoogleMaps_SwiftUIApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-SwiftUI/GoogleMaps-SwiftUI/GoogleMaps_SwiftUIApp.swift -------------------------------------------------------------------------------- /GoogleMaps-SwiftUI/GoogleMaps-SwiftUI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-SwiftUI/GoogleMaps-SwiftUI/Info.plist -------------------------------------------------------------------------------- /GoogleMaps-SwiftUI/GoogleMaps-SwiftUI/Samples/BasicMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-SwiftUI/GoogleMaps-SwiftUI/Samples/BasicMap.swift -------------------------------------------------------------------------------- /GoogleMaps-SwiftUI/GoogleMaps-SwiftUI/Samples/BasicMapWithMapID.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-SwiftUI/GoogleMaps-SwiftUI/Samples/BasicMapWithMapID.swift -------------------------------------------------------------------------------- /GoogleMaps-SwiftUI/GoogleMaps-SwiftUI/Samples/HandleMapEvents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-SwiftUI/GoogleMaps-SwiftUI/Samples/HandleMapEvents.swift -------------------------------------------------------------------------------- /GoogleMaps-SwiftUI/GoogleMaps-SwiftUI/Samples/MapTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-SwiftUI/GoogleMaps-SwiftUI/Samples/MapTypes.swift -------------------------------------------------------------------------------- /GoogleMaps-SwiftUI/GoogleMaps-SwiftUI/Samples/MapWithContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-SwiftUI/GoogleMaps-SwiftUI/Samples/MapWithContainer.swift -------------------------------------------------------------------------------- /GoogleMaps-SwiftUI/GoogleMaps-SwiftUI/Samples/MapWithMarker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-SwiftUI/GoogleMaps-SwiftUI/Samples/MapWithMarker.swift -------------------------------------------------------------------------------- /GoogleMaps-SwiftUI/GoogleMaps-SwiftUI/Samples/MapWithMarkers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps-SwiftUI/GoogleMaps-SwiftUI/Samples/MapWithMarkers.swift -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/BetaSamples/Samples+Beta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/BetaSamples/Samples+Beta.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/BetaSamples/Samples+Beta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/BetaSamples/Samples+Beta.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/DemoAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/DemoAppDelegate.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/DemoAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/DemoAppDelegate.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/DemoSceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/DemoSceneDelegate.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/DemoSceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/DemoSceneDelegate.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Info.plist -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/MapsDemoAssets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/MapsDemoAssets.xcassets/Contents.json -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/MasterViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/MasterViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/MasterViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/MasterViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/Museum-Icons/h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/Museum-Icons/h1.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/Museum-Icons/h1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/Museum-Icons/h1@2x.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/Museum-Icons/spitfire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/Museum-Icons/spitfire.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/Museum-Icons/spitfire@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/Museum-Icons/spitfire@2x.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/Museum-Icons/voyager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/Museum-Icons/voyager.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/Museum-Icons/voyager@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/Museum-Icons/voyager@2x.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/Museum-Icons/x29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/Museum-Icons/x29.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/Museum-Icons/x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/Museum-Icons/x29@2x.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/aeroplane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/aeroplane.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/aeroplane@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/aeroplane@2x.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/ar.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/argentina-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/argentina-large.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/argentina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/argentina.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/arrow.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/arrow@2x.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/australia-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/australia-large.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/australia-large@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/australia-large@2x.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/australia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/australia.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/boat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/boat.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/boat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/boat@2x.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/botswana-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/botswana-large.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/botswana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/botswana.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/bulgaria-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/bulgaria-large.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/bulgaria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/bulgaria.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/ca.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/cs.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/da.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/de.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/el.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/en_GB.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/es.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/fi.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/fr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/glow-marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/glow-marker.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/glow-marker@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/glow-marker@2x.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/he.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/hr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/hu.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/id.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/it.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/ja.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/ko.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/mapstyle-night.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/mapstyle-night.json -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/mapstyle-retro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/mapstyle-retro.json -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/mapstyle-silver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/mapstyle-silver.json -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/ms.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/museum-exhibits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/museum-exhibits.json -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/nb.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/newark_nj_1922.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/newark_nj_1922.jpg -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/nl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/pl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/popup_santa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/popup_santa.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/popup_santa@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/popup_santa@2x.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/pt.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/pt_PT.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/ro.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/ru.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/sk.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/step1.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/step1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/step1@2x.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/step2.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/step2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/step2@2x.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/step3.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/step3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/step3@2x.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/step4.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/step4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/step4@2x.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/step5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/step5.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/step5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/step5@2x.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/step6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/step6.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/step6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/step6@2x.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/step7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/step7.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/step7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/step7@2x.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/step8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/step8.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/step8@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/step8@2x.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/sv.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/th.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/tr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/track.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/track.json -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/uk.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/vi.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/walking_dot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/walking_dot@2x.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/walking_dot@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Resources/walking_dot@3x.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/zh_CN.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Resources/zh_TW.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/SDKDemoAPIKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/SDKDemoAPIKey.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/SampleListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/SampleListViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/SampleListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/SampleListViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/BasicMapViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/BasicMapViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/BasicMapViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/BasicMapViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/CameraViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/CameraViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/CameraViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/CameraViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/CustomIndoorViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/CustomIndoorViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/CustomIndoorViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/CustomIndoorViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/CustomMarkersViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/CustomMarkersViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/CustomMarkersViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/CustomMarkersViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/DoubleMapViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/DoubleMapViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/DoubleMapViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/DoubleMapViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/FitBoundsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/FitBoundsViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/FitBoundsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/FitBoundsViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/FixedPanoramaViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/FixedPanoramaViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/FixedPanoramaViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/FixedPanoramaViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/FrameRateViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/FrameRateViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/FrameRateViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/FrameRateViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/GeocoderViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/GeocoderViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/GeocoderViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/GeocoderViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/GestureControlViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/GestureControlViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/GestureControlViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/GestureControlViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/GradientPolylinesViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/GradientPolylinesViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/GradientPolylinesViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/GradientPolylinesViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/GroundOverlayViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/GroundOverlayViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/GroundOverlayViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/GroundOverlayViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/IndoorViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/IndoorViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/IndoorViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/IndoorViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/MapLayerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/MapLayerViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/MapLayerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/MapLayerViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/MapTypesViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/MapTypesViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/MapTypesViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/MapTypesViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/MapZoomViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/MapZoomViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/MapZoomViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/MapZoomViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/MarkerEventsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/MarkerEventsViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/MarkerEventsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/MarkerEventsViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/MarkerInfoWindowViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/MarkerInfoWindowViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/MarkerInfoWindowViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/MarkerInfoWindowViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/MarkerLayerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/MarkerLayerViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/MarkerLayerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/MarkerLayerViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/MarkersViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/MarkersViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/MarkersViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/MarkersViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/MyLocationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/MyLocationViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/MyLocationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/MyLocationViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/PaddingBehaviorViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/PaddingBehaviorViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/PaddingBehaviorViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/PaddingBehaviorViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/PanoramaViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/PanoramaViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/PanoramaViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/PanoramaViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/PolygonsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/PolygonsViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/PolygonsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/PolygonsViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/PolylinesViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/PolylinesViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/PolylinesViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/PolylinesViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/Samples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/Samples.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/Samples.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/Samples.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/SnapshotReadyViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/SnapshotReadyViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/SnapshotReadyViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/SnapshotReadyViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/StampedPolylinesViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/StampedPolylinesViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/StampedPolylinesViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/StampedPolylinesViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/StructuredGeocoderViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/StructuredGeocoderViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/StructuredGeocoderViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/StructuredGeocoderViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/StyledMapViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/StyledMapViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/StyledMapViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/StyledMapViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/TileLayerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/TileLayerViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/TileLayerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/TileLayerViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/TrafficMapViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/TrafficMapViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/TrafficMapViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/TrafficMapViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/VisibleRegionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/VisibleRegionViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/Samples/VisibleRegionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/Samples/VisibleRegionViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/UIViewController+GMSToastMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/UIViewController+GMSToastMessages.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/UIViewController+GMSToastMessages.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/UIViewController+GMSToastMessages.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsDemos/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsDemos/main.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/DemoAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/DemoAppDelegate.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/DemoAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/DemoAppDelegate.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/DemoSceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/DemoSceneDelegate.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/DemoSceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/DemoSceneDelegate.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Info.plist -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/Museum-Icons/h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/Museum-Icons/h1.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/Museum-Icons/x29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/Museum-Icons/x29.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/aeroplane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/aeroplane.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/aeroplane@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/aeroplane@2x.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/ar.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/argentina-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/argentina-large.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/argentina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/argentina.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/arrow.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/arrow@2x.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/australia-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/australia-large.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/australia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/australia.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/boat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/boat.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/boat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/boat@2x.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/botswana-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/botswana-large.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/botswana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/botswana.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/bulgaria-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/bulgaria-large.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/bulgaria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/bulgaria.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/ca.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/cs.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/da.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/de.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/el.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/en_GB.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/es.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/fi.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/fr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/glow-marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/glow-marker.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/glow-marker@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/glow-marker@2x.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/he.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/hr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/hu.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/id.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/it.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/ja.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/ko.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/mapstyle-night.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/mapstyle-night.json -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/mapstyle-retro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/mapstyle-retro.json -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/mapstyle-silver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/mapstyle-silver.json -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/ms.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/museum-exhibits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/museum-exhibits.json -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/nb.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/newark_nj_1922.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/newark_nj_1922.jpg -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/nl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/pl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/popup_santa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/popup_santa.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/popup_santa@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/popup_santa@2x.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/pt.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/pt_PT.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/ro.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/ru.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/sk.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/step1.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/step1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/step1@2x.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/step2.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/step2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/step2@2x.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/step3.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/step3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/step3@2x.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/step4.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/step4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/step4@2x.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/step5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/step5.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/step5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/step5@2x.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/step6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/step6.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/step6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/step6@2x.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/step7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/step7.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/step7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/step7@2x.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/step8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/step8.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/step8@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/step8@2x.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/sv.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/th.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/tr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/track.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/track.json -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/uk.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/vi.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/walking_dot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/walking_dot@2x.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/walking_dot@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/walking_dot@3x.png -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/zh_CN.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Resources/zh_TW.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/SDKDemoAPIKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/SDKDemoAPIKey.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/SampleListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/SampleListViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/SampleListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/SampleListViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Samples/CameraViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Samples/CameraViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Samples/CameraViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Samples/CameraViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Samples/IndoorViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Samples/IndoorViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Samples/IndoorViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Samples/IndoorViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Samples/MapZoomViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Samples/MapZoomViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Samples/MapZoomViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Samples/MapZoomViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Samples/MarkersViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Samples/MarkersViewController.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Samples/MarkersViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Samples/MarkersViewController.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Samples/Samples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Samples/Samples.h -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/Samples/Samples.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/Samples/Samples.m -------------------------------------------------------------------------------- /GoogleMaps/GoogleMapsXCFrameworkDemos/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/GoogleMapsXCFrameworkDemos/main.m -------------------------------------------------------------------------------- /GoogleMaps/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/Podfile -------------------------------------------------------------------------------- /GoogleMaps/README.GoogleMapsDemos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleMaps/README.GoogleMapsDemos -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Info.plist -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/ar.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/ca.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/cs.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/da.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/de.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/el.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/en_AU.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/en_GB.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/en_IN.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/es.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/es_419.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/es_MX.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/fi.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/fr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/fr_CA.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/he.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/hi.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/hr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/hu.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/id.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/it.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/ja.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/ko.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/ms.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/nb.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/nl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/pl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/pt.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/pt_BR.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/pt_PT.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/ro.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/ru.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/sk.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/sv.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/th.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/tr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/uk.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/vi.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/zh_CN.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/zh_HK.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/GoogleNavSwiftXCFrameworkDemos/Resources/zh_TW.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation-Swift/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleNavigation-Swift/Podfile -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleNavigation/GoogleNavXCFrameworkDemos.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/DemoData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleNavigation/GoogleNavXCFrameworkDemos/DemoData.h -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/DemoData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleNavigation/GoogleNavXCFrameworkDemos/DemoData.m -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleNavigation/GoogleNavXCFrameworkDemos/Info.plist -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleNavigation/GoogleNavXCFrameworkDemos/METADATA -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/NavDemoAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleNavigation/GoogleNavXCFrameworkDemos/NavDemoAppDelegate.h -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/NavDemoAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleNavigation/GoogleNavXCFrameworkDemos/NavDemoAppDelegate.m -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/NavDemoSceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleNavigation/GoogleNavXCFrameworkDemos/NavDemoSceneDelegate.h -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/NavDemoSceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleNavigation/GoogleNavXCFrameworkDemos/NavDemoSceneDelegate.m -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/ar.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/ca.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/cs.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/da.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/de.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/el.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/en_AU.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/en_GB.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/en_IN.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/es.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/es_419.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/es_MX.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/fi.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/fr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/fr_CA.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/he.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/hi.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/hr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/hu.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/id.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/it.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/ja.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/ko.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/ms.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/nb.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/nl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/pl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/pt.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/pt_BR.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/pt_PT.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/ro.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/ru.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/sk.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/sv.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/th.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/tr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/uk.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/vi.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/zh_CN.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/zh_HK.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Resources/zh_TW.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/SDKDemoAPIKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleNavigation/GoogleNavXCFrameworkDemos/SDKDemoAPIKey.h -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Utils/NavDemoStringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleNavigation/GoogleNavXCFrameworkDemos/Utils/NavDemoStringUtils.h -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Utils/NavDemoStringUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleNavigation/GoogleNavXCFrameworkDemos/Utils/NavDemoStringUtils.m -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Utils/NavDemoSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleNavigation/GoogleNavXCFrameworkDemos/Utils/NavDemoSwitch.h -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Utils/NavDemoSwitch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleNavigation/GoogleNavXCFrameworkDemos/Utils/NavDemoSwitch.m -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Utils/NavDemoUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleNavigation/GoogleNavXCFrameworkDemos/Utils/NavDemoUtilities.h -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/Utils/NavDemoUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleNavigation/GoogleNavXCFrameworkDemos/Utils/NavDemoUtilities.m -------------------------------------------------------------------------------- /GoogleNavigation/GoogleNavXCFrameworkDemos/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleNavigation/GoogleNavXCFrameworkDemos/main.m -------------------------------------------------------------------------------- /GoogleNavigation/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GoogleNavigation/Podfile -------------------------------------------------------------------------------- /GooglePlaces-Swift/GooglePlacesSwiftDemos.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces-Swift/GooglePlacesSwiftDemos.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GooglePlaces-Swift/GooglePlacesSwiftDemos/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces-Swift/GooglePlacesSwiftDemos/Info.plist -------------------------------------------------------------------------------- /GooglePlaces-Swift/GooglePlacesSwiftDemos/Swift/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces-Swift/GooglePlacesSwiftDemos/Swift/AppDelegate.swift -------------------------------------------------------------------------------- /GooglePlaces-Swift/GooglePlacesSwiftDemos/Swift/SDKDemoAPIKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces-Swift/GooglePlacesSwiftDemos/Swift/SDKDemoAPIKey.swift -------------------------------------------------------------------------------- /GooglePlaces-Swift/GooglePlacesSwiftDemos/Swift/SampleDatas.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces-Swift/GooglePlacesSwiftDemos/Swift/SampleDatas.swift -------------------------------------------------------------------------------- /GooglePlaces-Swift/GooglePlacesSwiftDemos/Swift/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces-Swift/GooglePlacesSwiftDemos/Swift/SceneDelegate.swift -------------------------------------------------------------------------------- /GooglePlaces-Swift/GooglePlacesSwiftXCFrameworkDemos/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces-Swift/GooglePlacesSwiftXCFrameworkDemos/Info.plist -------------------------------------------------------------------------------- /GooglePlaces-Swift/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces-Swift/Podfile -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesDemos.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesDemos.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesDemos/DemoAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesDemos/DemoAppDelegate.h -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesDemos/DemoAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesDemos/DemoAppDelegate.m -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesDemos/DemoData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesDemos/DemoData.h -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesDemos/DemoData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesDemos/DemoData.m -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesDemos/DemoListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesDemos/DemoListViewController.h -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesDemos/DemoListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesDemos/DemoListViewController.m -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesDemos/DemoSceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesDemos/DemoSceneDelegate.h -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesDemos/DemoSceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesDemos/DemoSceneDelegate.m -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesDemos/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesDemos/Info.plist -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesDemos/Resources/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesDemos/Resources/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesDemos/Resources/ca.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesDemos/Resources/ca.lproj/Localizable.strings -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesDemos/Resources/cs.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesDemos/Resources/cs.lproj/Localizable.strings -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesDemos/Resources/da.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesDemos/Resources/da.lproj/Localizable.strings -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesDemos/Resources/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesDemos/Resources/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesDemos/Resources/el.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesDemos/Resources/el.lproj/Localizable.strings -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesDemos/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesDemos/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesDemos/Resources/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesDemos/Resources/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesDemos/Resources/fi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesDemos/Resources/fi.lproj/Localizable.strings -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesDemos/Resources/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesDemos/Resources/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesDemos/Resources/he.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesDemos/Resources/he.lproj/Localizable.strings -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesDemos/Resources/hi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesDemos/Resources/hi.lproj/Localizable.strings -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesDemos/Resources/hr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesDemos/Resources/hr.lproj/Localizable.strings -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesDemos/Resources/hu.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesDemos/Resources/hu.lproj/Localizable.strings -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesDemos/Resources/id.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesDemos/Resources/id.lproj/Localizable.strings -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesDemos/Resources/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesDemos/Resources/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesDemos/Resources/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesDemos/Resources/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesDemos/SDKDemoAPIKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesDemos/SDKDemoAPIKey.h -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesDemos/Samples/PagingPhotoView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesDemos/Samples/PagingPhotoView.h -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesDemos/Samples/PagingPhotoView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesDemos/Samples/PagingPhotoView.m -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesDemos/Support/BaseDemoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesDemos/Support/BaseDemoViewController.h -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesDemos/Support/BaseDemoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesDemos/Support/BaseDemoViewController.m -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesDemos/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesDemos/main.m -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesXCFrameworkDemos.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesXCFrameworkDemos.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesXCFrameworkDemos/DemoAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesXCFrameworkDemos/DemoAppDelegate.h -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesXCFrameworkDemos/DemoAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesXCFrameworkDemos/DemoAppDelegate.m -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesXCFrameworkDemos/DemoData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesXCFrameworkDemos/DemoData.h -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesXCFrameworkDemos/DemoData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesXCFrameworkDemos/DemoData.m -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesXCFrameworkDemos/DemoListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesXCFrameworkDemos/DemoListViewController.h -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesXCFrameworkDemos/DemoListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesXCFrameworkDemos/DemoListViewController.m -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesXCFrameworkDemos/DemoSceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesXCFrameworkDemos/DemoSceneDelegate.h -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesXCFrameworkDemos/DemoSceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesXCFrameworkDemos/DemoSceneDelegate.m -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesXCFrameworkDemos/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesXCFrameworkDemos/Info.plist -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesXCFrameworkDemos/SDKDemoAPIKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesXCFrameworkDemos/SDKDemoAPIKey.h -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesXCFrameworkDemos/Samples/PagingPhotoView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesXCFrameworkDemos/Samples/PagingPhotoView.h -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesXCFrameworkDemos/Samples/PagingPhotoView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesXCFrameworkDemos/Samples/PagingPhotoView.m -------------------------------------------------------------------------------- /GooglePlaces/GooglePlacesXCFrameworkDemos/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/GooglePlacesXCFrameworkDemos/main.m -------------------------------------------------------------------------------- /GooglePlaces/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/Podfile -------------------------------------------------------------------------------- /GooglePlaces/README.GooglePlacesDemos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/GooglePlaces/README.GooglePlacesDemos -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MapsAndPlacesDemo/MapsAndPlacesDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/MapsAndPlacesDemo/MapsAndPlacesDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MapsAndPlacesDemo/MapsAndPlacesDemo/ApiKeys.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/MapsAndPlacesDemo/MapsAndPlacesDemo/ApiKeys.swift -------------------------------------------------------------------------------- /MapsAndPlacesDemo/MapsAndPlacesDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/MapsAndPlacesDemo/MapsAndPlacesDemo/AppDelegate.swift -------------------------------------------------------------------------------- /MapsAndPlacesDemo/MapsAndPlacesDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/MapsAndPlacesDemo/MapsAndPlacesDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /MapsAndPlacesDemo/MapsAndPlacesDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/MapsAndPlacesDemo/MapsAndPlacesDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /MapsAndPlacesDemo/MapsAndPlacesDemo/Clusters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/MapsAndPlacesDemo/MapsAndPlacesDemo/Clusters.swift -------------------------------------------------------------------------------- /MapsAndPlacesDemo/MapsAndPlacesDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/MapsAndPlacesDemo/MapsAndPlacesDemo/Info.plist -------------------------------------------------------------------------------- /MapsAndPlacesDemo/MapsAndPlacesDemo/LocationImageGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/MapsAndPlacesDemo/MapsAndPlacesDemo/LocationImageGenerator.swift -------------------------------------------------------------------------------- /MapsAndPlacesDemo/MapsAndPlacesDemo/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/MapsAndPlacesDemo/MapsAndPlacesDemo/MainViewController.swift -------------------------------------------------------------------------------- /MapsAndPlacesDemo/MapsAndPlacesDemo/MapThemes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/MapsAndPlacesDemo/MapsAndPlacesDemo/MapThemes.swift -------------------------------------------------------------------------------- /MapsAndPlacesDemo/MapsAndPlacesDemo/OverlayController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/MapsAndPlacesDemo/MapsAndPlacesDemo/OverlayController.swift -------------------------------------------------------------------------------- /MapsAndPlacesDemo/MapsAndPlacesDemo/PopUpViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/MapsAndPlacesDemo/MapsAndPlacesDemo/PopUpViewController.swift -------------------------------------------------------------------------------- /MapsAndPlacesDemo/MapsAndPlacesDemo/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/MapsAndPlacesDemo/MapsAndPlacesDemo/SceneDelegate.swift -------------------------------------------------------------------------------- /MapsAndPlacesDemo/MapsAndPlacesDemo/StreetViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/MapsAndPlacesDemo/MapsAndPlacesDemo/StreetViewController.swift -------------------------------------------------------------------------------- /MapsAndPlacesDemo/MapsAndPlacesDemo/UIImageExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/MapsAndPlacesDemo/MapsAndPlacesDemo/UIImageExtension.swift -------------------------------------------------------------------------------- /MapsAndPlacesDemo/MapsAndPlacesDemo/UITextViewExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/MapsAndPlacesDemo/MapsAndPlacesDemo/UITextViewExtension.swift -------------------------------------------------------------------------------- /MapsAndPlacesDemo/MapsAndPlacesDemo/WelcomeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/MapsAndPlacesDemo/MapsAndPlacesDemo/WelcomeViewController.swift -------------------------------------------------------------------------------- /MapsAndPlacesDemo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/MapsAndPlacesDemo/Podfile -------------------------------------------------------------------------------- /MapsAndPlacesDemo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/MapsAndPlacesDemo/README.md -------------------------------------------------------------------------------- /MapsAndPlacesDemo/dataset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/MapsAndPlacesDemo/dataset.json -------------------------------------------------------------------------------- /MapsAndPlacesDemo/raw_input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/MapsAndPlacesDemo/raw_input.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/SECURITY.md -------------------------------------------------------------------------------- /copy_pod_try.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/copy_pod_try.sh -------------------------------------------------------------------------------- /snippets/Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/Cartfile -------------------------------------------------------------------------------- /snippets/MapsBetaSnippets/Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsBetaSnippets/Cartfile -------------------------------------------------------------------------------- /snippets/MapsBetaSnippets/MapsBetaSnippets/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsBetaSnippets/MapsBetaSnippets/AppDelegate.swift -------------------------------------------------------------------------------- /snippets/MapsBetaSnippets/MapsBetaSnippets/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsBetaSnippets/MapsBetaSnippets/Info.plist -------------------------------------------------------------------------------- /snippets/MapsBetaSnippets/MapsBetaSnippets/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsBetaSnippets/MapsBetaSnippets/SceneDelegate.swift -------------------------------------------------------------------------------- /snippets/MapsBetaSnippets/MapsBetaSnippets/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsBetaSnippets/MapsBetaSnippets/ViewController.swift -------------------------------------------------------------------------------- /snippets/MapsBetaSnippets/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsBetaSnippets/Podfile -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/AppDelegate.h -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/AppDelegate.m -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/CameraAndView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/CameraAndView.h -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/CameraAndView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/CameraAndView.m -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/ControlsAndGestures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/ControlsAndGestures.h -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/ControlsAndGestures.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/ControlsAndGestures.m -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/Events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/Events.h -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/Events.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/Events.m -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/GroundOverlays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/GroundOverlays.h -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/GroundOverlays.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/GroundOverlays.m -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/Info.plist -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/MapObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/MapObjects.h -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/MapObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/MapObjects.m -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/MapStyling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/MapStyling.h -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/MapStyling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/MapStyling.m -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/MapWithMarkerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/MapWithMarkerViewController.h -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/MapWithMarkerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/MapWithMarkerViewController.m -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/Markers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/Markers.h -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/Markers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/Markers.m -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/POI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/POI.h -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/POI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/POI.m -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/SceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/SceneDelegate.h -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/SceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/SceneDelegate.m -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/Shapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/Shapes.h -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/Shapes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/Shapes.m -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/StreetView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/StreetView.h -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/StreetView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/StreetView.m -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/Swift/CameraAndView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/Swift/CameraAndView.swift -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/Swift/ControlsAndGestures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/Swift/ControlsAndGestures.swift -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/Swift/Events.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/Swift/Events.swift -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/Swift/GroundOverlays.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/Swift/GroundOverlays.swift -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/Swift/MapObjects.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/Swift/MapObjects.swift -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/Swift/MapStyling.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/Swift/MapStyling.swift -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/Swift/Markers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/Swift/Markers.swift -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/Swift/POI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/Swift/POI.swift -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/Swift/Shapes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/Swift/Shapes.swift -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/Swift/StreetView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/Swift/StreetView.swift -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/Swift/TileLayers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/Swift/TileLayers.swift -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/TileLayers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/TileLayers.h -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/TileLayers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/TileLayers.m -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/ViewController.h -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/ViewController.m -------------------------------------------------------------------------------- /snippets/MapsSnippets/MapsSnippets/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/MapsSnippets/main.m -------------------------------------------------------------------------------- /snippets/MapsSnippets/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsSnippets/Podfile -------------------------------------------------------------------------------- /snippets/MapsUtilsSnippets/MapsUtilsSnippets/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsUtilsSnippets/MapsUtilsSnippets/AppDelegate.h -------------------------------------------------------------------------------- /snippets/MapsUtilsSnippets/MapsUtilsSnippets/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsUtilsSnippets/MapsUtilsSnippets/AppDelegate.m -------------------------------------------------------------------------------- /snippets/MapsUtilsSnippets/MapsUtilsSnippets/GeoJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsUtilsSnippets/MapsUtilsSnippets/GeoJSON.h -------------------------------------------------------------------------------- /snippets/MapsUtilsSnippets/MapsUtilsSnippets/GeoJSON.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsUtilsSnippets/MapsUtilsSnippets/GeoJSON.m -------------------------------------------------------------------------------- /snippets/MapsUtilsSnippets/MapsUtilsSnippets/Heatmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsUtilsSnippets/MapsUtilsSnippets/Heatmap.h -------------------------------------------------------------------------------- /snippets/MapsUtilsSnippets/MapsUtilsSnippets/Heatmap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsUtilsSnippets/MapsUtilsSnippets/Heatmap.m -------------------------------------------------------------------------------- /snippets/MapsUtilsSnippets/MapsUtilsSnippets/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsUtilsSnippets/MapsUtilsSnippets/Info.plist -------------------------------------------------------------------------------- /snippets/MapsUtilsSnippets/MapsUtilsSnippets/KML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsUtilsSnippets/MapsUtilsSnippets/KML.h -------------------------------------------------------------------------------- /snippets/MapsUtilsSnippets/MapsUtilsSnippets/KML.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsUtilsSnippets/MapsUtilsSnippets/KML.m -------------------------------------------------------------------------------- /snippets/MapsUtilsSnippets/MapsUtilsSnippets/MarkerClustering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsUtilsSnippets/MapsUtilsSnippets/MarkerClustering.h -------------------------------------------------------------------------------- /snippets/MapsUtilsSnippets/MapsUtilsSnippets/MarkerClustering.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsUtilsSnippets/MapsUtilsSnippets/MarkerClustering.m -------------------------------------------------------------------------------- /snippets/MapsUtilsSnippets/MapsUtilsSnippets/QuadTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsUtilsSnippets/MapsUtilsSnippets/QuadTree.h -------------------------------------------------------------------------------- /snippets/MapsUtilsSnippets/MapsUtilsSnippets/QuadTree.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsUtilsSnippets/MapsUtilsSnippets/QuadTree.m -------------------------------------------------------------------------------- /snippets/MapsUtilsSnippets/MapsUtilsSnippets/SceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsUtilsSnippets/MapsUtilsSnippets/SceneDelegate.h -------------------------------------------------------------------------------- /snippets/MapsUtilsSnippets/MapsUtilsSnippets/SceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsUtilsSnippets/MapsUtilsSnippets/SceneDelegate.m -------------------------------------------------------------------------------- /snippets/MapsUtilsSnippets/MapsUtilsSnippets/Swift/GeoJSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsUtilsSnippets/MapsUtilsSnippets/Swift/GeoJSON.swift -------------------------------------------------------------------------------- /snippets/MapsUtilsSnippets/MapsUtilsSnippets/Swift/Heatmap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsUtilsSnippets/MapsUtilsSnippets/Swift/Heatmap.swift -------------------------------------------------------------------------------- /snippets/MapsUtilsSnippets/MapsUtilsSnippets/Swift/KML.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsUtilsSnippets/MapsUtilsSnippets/Swift/KML.swift -------------------------------------------------------------------------------- /snippets/MapsUtilsSnippets/MapsUtilsSnippets/Swift/QuadTree.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsUtilsSnippets/MapsUtilsSnippets/Swift/QuadTree.swift -------------------------------------------------------------------------------- /snippets/MapsUtilsSnippets/MapsUtilsSnippets/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsUtilsSnippets/MapsUtilsSnippets/ViewController.h -------------------------------------------------------------------------------- /snippets/MapsUtilsSnippets/MapsUtilsSnippets/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsUtilsSnippets/MapsUtilsSnippets/ViewController.m -------------------------------------------------------------------------------- /snippets/MapsUtilsSnippets/MapsUtilsSnippets/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsUtilsSnippets/MapsUtilsSnippets/main.m -------------------------------------------------------------------------------- /snippets/MapsUtilsSnippets/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/MapsUtilsSnippets/Podfile -------------------------------------------------------------------------------- /snippets/PlacesSnippets/PlacesSnippets.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/PlacesSnippets/PlacesSnippets.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /snippets/PlacesSnippets/PlacesSnippets/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/PlacesSnippets/PlacesSnippets/AppDelegate.h -------------------------------------------------------------------------------- /snippets/PlacesSnippets/PlacesSnippets/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/PlacesSnippets/PlacesSnippets/AppDelegate.m -------------------------------------------------------------------------------- /snippets/PlacesSnippets/PlacesSnippets/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/PlacesSnippets/PlacesSnippets/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /snippets/PlacesSnippets/PlacesSnippets/GetStartedViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/PlacesSnippets/PlacesSnippets/GetStartedViewController.h -------------------------------------------------------------------------------- /snippets/PlacesSnippets/PlacesSnippets/GetStartedViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/PlacesSnippets/PlacesSnippets/GetStartedViewController.m -------------------------------------------------------------------------------- /snippets/PlacesSnippets/PlacesSnippets/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/PlacesSnippets/PlacesSnippets/Info.plist -------------------------------------------------------------------------------- /snippets/PlacesSnippets/PlacesSnippets/SceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/PlacesSnippets/PlacesSnippets/SceneDelegate.h -------------------------------------------------------------------------------- /snippets/PlacesSnippets/PlacesSnippets/SceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/PlacesSnippets/PlacesSnippets/SceneDelegate.m -------------------------------------------------------------------------------- /snippets/PlacesSnippets/PlacesSnippets/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/PlacesSnippets/PlacesSnippets/ViewController.h -------------------------------------------------------------------------------- /snippets/PlacesSnippets/PlacesSnippets/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/PlacesSnippets/PlacesSnippets/ViewController.m -------------------------------------------------------------------------------- /snippets/PlacesSnippets/PlacesSnippets/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/PlacesSnippets/PlacesSnippets/main.m -------------------------------------------------------------------------------- /snippets/PlacesSnippets/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/PlacesSnippets/Podfile -------------------------------------------------------------------------------- /snippets/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/Podfile -------------------------------------------------------------------------------- /snippets/XCFrameworkSnippets/Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/snippets/XCFrameworkSnippets/Cartfile -------------------------------------------------------------------------------- /tutorials/current-place-on-map/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/tutorials/current-place-on-map/Podfile -------------------------------------------------------------------------------- /tutorials/current-place-on-map/current-place-on-map/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/tutorials/current-place-on-map/current-place-on-map/Info.plist -------------------------------------------------------------------------------- /tutorials/map-with-marker/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/tutorials/map-with-marker/Podfile -------------------------------------------------------------------------------- /tutorials/map-with-marker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/tutorials/map-with-marker/README.md -------------------------------------------------------------------------------- /tutorials/map-with-marker/map-with-marker.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/tutorials/map-with-marker/map-with-marker.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /tutorials/map-with-marker/map-with-marker/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/tutorials/map-with-marker/map-with-marker/AppDelegate.swift -------------------------------------------------------------------------------- /tutorials/map-with-marker/map-with-marker/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/tutorials/map-with-marker/map-with-marker/Info.plist -------------------------------------------------------------------------------- /tutorials/map-with-marker/map-with-marker/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/tutorials/map-with-marker/map-with-marker/ViewController.h -------------------------------------------------------------------------------- /tutorials/map-with-marker/map-with-marker/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/tutorials/map-with-marker/map-with-marker/ViewController.m -------------------------------------------------------------------------------- /tutorials/map-with-marker/map-with-marker/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/tutorials/map-with-marker/map-with-marker/ViewController.swift -------------------------------------------------------------------------------- /tutorials/places-address-form/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/tutorials/places-address-form/Podfile -------------------------------------------------------------------------------- /tutorials/places-address-form/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/tutorials/places-address-form/README.md -------------------------------------------------------------------------------- /tutorials/places-address-form/places-address-form/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/tutorials/places-address-form/places-address-form/AppDelegate.swift -------------------------------------------------------------------------------- /tutorials/places-address-form/places-address-form/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps-samples/maps-sdk-for-ios-samples/HEAD/tutorials/places-address-form/places-address-form/Info.plist --------------------------------------------------------------------------------