├── .gitignore ├── LICENSE ├── README.md ├── cameras ├── axis.yaml ├── flat.yaml ├── focal_length.yaml ├── isometric.yaml ├── perspective.yaml └── vanishing_point.yaml ├── circle.yml ├── css ├── style.css └── tutorial-embeds.css ├── docs ├── API-Reference │ ├── Android-API.md │ ├── Javascript-API.md │ ├── android-sdk │ │ ├── 0.10.0 │ │ │ ├── allclasses-frame.html │ │ │ ├── allclasses-noframe.html │ │ │ ├── com │ │ │ │ └── mapzen │ │ │ │ │ └── tangram │ │ │ │ │ ├── CameraPosition.html │ │ │ │ │ ├── CameraUpdate.html │ │ │ │ │ ├── CameraUpdateFactory.html │ │ │ │ │ ├── FeaturePickListener.html │ │ │ │ │ ├── LabelPickListener.html │ │ │ │ │ ├── LabelPickResult.LabelType.html │ │ │ │ │ ├── LabelPickResult.html │ │ │ │ │ ├── LngLat.html │ │ │ │ │ ├── MapChangeListener.html │ │ │ │ │ ├── MapController.CameraAnimationCallback.html │ │ │ │ │ ├── MapController.CameraType.html │ │ │ │ │ ├── MapController.DebugFlag.html │ │ │ │ │ ├── MapController.EaseType.html │ │ │ │ │ ├── MapController.Error.html │ │ │ │ │ ├── MapController.FrameCaptureCallback.html │ │ │ │ │ ├── MapController.SceneLoadListener.html │ │ │ │ │ ├── MapController.html │ │ │ │ │ ├── MapData.html │ │ │ │ │ ├── MapView.MapReadyCallback.html │ │ │ │ │ ├── MapView.html │ │ │ │ │ ├── Marker.html │ │ │ │ │ ├── MarkerPickListener.html │ │ │ │ │ ├── MarkerPickResult.html │ │ │ │ │ ├── SceneError.html │ │ │ │ │ ├── SceneUpdate.html │ │ │ │ │ ├── TouchInput.DoubleTapResponder.html │ │ │ │ │ ├── TouchInput.Gestures.html │ │ │ │ │ ├── TouchInput.LongPressResponder.html │ │ │ │ │ ├── TouchInput.PanResponder.html │ │ │ │ │ ├── TouchInput.RotateResponder.html │ │ │ │ │ ├── TouchInput.ScaleResponder.html │ │ │ │ │ ├── TouchInput.ShoveResponder.html │ │ │ │ │ ├── TouchInput.TapResponder.html │ │ │ │ │ ├── TouchInput.html │ │ │ │ │ ├── geometry │ │ │ │ │ ├── Geometry.html │ │ │ │ │ ├── Point.html │ │ │ │ │ ├── Polygon.html │ │ │ │ │ ├── Polyline.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ └── package-tree.html │ │ │ │ │ ├── networking │ │ │ │ │ ├── DefaultHttpHandler.html │ │ │ │ │ ├── HttpHandler.Callback.html │ │ │ │ │ ├── HttpHandler.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ └── package-tree.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── viewholder │ │ │ │ │ ├── ConfigChooser.html │ │ │ │ │ ├── GLSurfaceViewHolder.html │ │ │ │ │ ├── GLSurfaceViewHolderFactory.html │ │ │ │ │ ├── GLViewHolder.RenderMode.html │ │ │ │ │ ├── GLViewHolder.html │ │ │ │ │ ├── GLViewHolderFactory.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ └── package-tree.html │ │ │ ├── constant-values.html │ │ │ ├── deprecated-list.html │ │ │ ├── help-doc.html │ │ │ ├── index-all.html │ │ │ ├── index.html │ │ │ ├── overview-frame.html │ │ │ ├── overview-summary.html │ │ │ ├── overview-tree.html │ │ │ ├── package-list │ │ │ ├── script.js │ │ │ └── stylesheet.css │ │ ├── 0.11.0 │ │ │ ├── allclasses-frame.html │ │ │ ├── allclasses-noframe.html │ │ │ ├── com │ │ │ │ └── mapzen │ │ │ │ │ └── tangram │ │ │ │ │ ├── CameraPosition.html │ │ │ │ │ ├── CameraUpdate.html │ │ │ │ │ ├── CameraUpdateFactory.html │ │ │ │ │ ├── FeaturePickListener.html │ │ │ │ │ ├── LabelPickListener.html │ │ │ │ │ ├── LabelPickResult.LabelType.html │ │ │ │ │ ├── LabelPickResult.html │ │ │ │ │ ├── LngLat.html │ │ │ │ │ ├── MapChangeListener.html │ │ │ │ │ ├── MapController.CameraAnimationCallback.html │ │ │ │ │ ├── MapController.CameraType.html │ │ │ │ │ ├── MapController.DebugFlag.html │ │ │ │ │ ├── MapController.EaseType.html │ │ │ │ │ ├── MapController.Error.html │ │ │ │ │ ├── MapController.FrameCaptureCallback.html │ │ │ │ │ ├── MapController.SceneLoadListener.html │ │ │ │ │ ├── MapController.html │ │ │ │ │ ├── MapData.html │ │ │ │ │ ├── MapView.MapReadyCallback.html │ │ │ │ │ ├── MapView.NativeLibraryLoadCb.html │ │ │ │ │ ├── MapView.html │ │ │ │ │ ├── Marker.html │ │ │ │ │ ├── MarkerPickListener.html │ │ │ │ │ ├── MarkerPickResult.html │ │ │ │ │ ├── SceneError.html │ │ │ │ │ ├── SceneUpdate.html │ │ │ │ │ ├── TouchInput.DoubleTapResponder.html │ │ │ │ │ ├── TouchInput.Gestures.html │ │ │ │ │ ├── TouchInput.LongPressResponder.html │ │ │ │ │ ├── TouchInput.PanResponder.html │ │ │ │ │ ├── TouchInput.RotateResponder.html │ │ │ │ │ ├── TouchInput.ScaleResponder.html │ │ │ │ │ ├── TouchInput.ShoveResponder.html │ │ │ │ │ ├── TouchInput.TapResponder.html │ │ │ │ │ ├── TouchInput.html │ │ │ │ │ ├── geometry │ │ │ │ │ ├── Geometry.html │ │ │ │ │ ├── Point.html │ │ │ │ │ ├── Polygon.html │ │ │ │ │ ├── Polyline.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ └── package-tree.html │ │ │ │ │ ├── networking │ │ │ │ │ ├── DefaultHttpHandler.html │ │ │ │ │ ├── HttpHandler.Callback.html │ │ │ │ │ ├── HttpHandler.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ └── package-tree.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── viewholder │ │ │ │ │ ├── ConfigChooser.html │ │ │ │ │ ├── GLSurfaceViewHolder.html │ │ │ │ │ ├── GLSurfaceViewHolderFactory.html │ │ │ │ │ ├── GLViewHolder.RenderMode.html │ │ │ │ │ ├── GLViewHolder.html │ │ │ │ │ ├── GLViewHolderFactory.html │ │ │ │ │ ├── TextureViewHolder.html │ │ │ │ │ ├── TextureViewHolderFactory.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ └── package-tree.html │ │ │ ├── constant-values.html │ │ │ ├── deprecated-list.html │ │ │ ├── help-doc.html │ │ │ ├── index-all.html │ │ │ ├── index.html │ │ │ ├── overview-frame.html │ │ │ ├── overview-summary.html │ │ │ ├── overview-tree.html │ │ │ ├── package-list │ │ │ ├── script.js │ │ │ └── stylesheet.css │ │ ├── 0.2.1 │ │ │ ├── allclasses-frame.html │ │ │ ├── allclasses-noframe.html │ │ │ ├── com │ │ │ │ └── mapzen │ │ │ │ │ └── tangram │ │ │ │ │ ├── ConfigChooser.html │ │ │ │ │ ├── HttpHandler.html │ │ │ │ │ ├── LngLat.html │ │ │ │ │ ├── MapController.DebugFlag.html │ │ │ │ │ ├── MapController.EaseType.html │ │ │ │ │ ├── MapController.FeaturePickListener.html │ │ │ │ │ ├── MapController.FrameCaptureCallback.html │ │ │ │ │ ├── MapController.ViewCompleteListener.html │ │ │ │ │ ├── MapController.html │ │ │ │ │ ├── MapData.html │ │ │ │ │ ├── MapView.OnMapReadyCallback.html │ │ │ │ │ ├── MapView.html │ │ │ │ │ ├── TouchInput.DoubleTapResponder.html │ │ │ │ │ ├── TouchInput.Gestures.html │ │ │ │ │ ├── TouchInput.LongPressResponder.html │ │ │ │ │ ├── TouchInput.PanResponder.html │ │ │ │ │ ├── TouchInput.RotateResponder.html │ │ │ │ │ ├── TouchInput.ScaleResponder.html │ │ │ │ │ ├── TouchInput.ShoveResponder.html │ │ │ │ │ ├── TouchInput.TapResponder.html │ │ │ │ │ ├── TouchInput.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ └── package-tree.html │ │ │ ├── constant-values.html │ │ │ ├── deprecated-list.html │ │ │ ├── help-doc.html │ │ │ ├── index-all.html │ │ │ ├── index.html │ │ │ ├── overview-tree.html │ │ │ ├── package-list │ │ │ ├── resources │ │ │ │ ├── background.gif │ │ │ │ ├── tab.gif │ │ │ │ ├── titlebar.gif │ │ │ │ └── titlebar_end.gif │ │ │ └── stylesheet.css │ │ ├── 0.2 │ │ │ ├── allclasses-frame.html │ │ │ ├── allclasses-noframe.html │ │ │ ├── com │ │ │ │ └── mapzen │ │ │ │ │ └── tangram │ │ │ │ │ ├── ConfigChooser.html │ │ │ │ │ ├── HttpHandler.html │ │ │ │ │ ├── LngLat.html │ │ │ │ │ ├── MapController.CameraType.html │ │ │ │ │ ├── MapController.DebugFlag.html │ │ │ │ │ ├── MapController.EaseType.html │ │ │ │ │ ├── MapController.FeaturePickListener.html │ │ │ │ │ ├── MapController.html │ │ │ │ │ ├── MapData.html │ │ │ │ │ ├── MapView.OnMapReadyCallback.html │ │ │ │ │ ├── MapView.html │ │ │ │ │ ├── TouchInput.DoubleTapResponder.html │ │ │ │ │ ├── TouchInput.Gestures.html │ │ │ │ │ ├── TouchInput.LongPressResponder.html │ │ │ │ │ ├── TouchInput.PanResponder.html │ │ │ │ │ ├── TouchInput.RotateResponder.html │ │ │ │ │ ├── TouchInput.ScaleResponder.html │ │ │ │ │ ├── TouchInput.ShoveResponder.html │ │ │ │ │ ├── TouchInput.TapResponder.html │ │ │ │ │ ├── TouchInput.html │ │ │ │ │ ├── camera │ │ │ │ │ ├── CameraPosition.Builder.html │ │ │ │ │ ├── CameraPosition.html │ │ │ │ │ ├── CameraUpdate.html │ │ │ │ │ ├── CameraUpdateFactory.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ └── package-tree.html │ │ │ │ │ ├── geometry │ │ │ │ │ ├── Geometry.html │ │ │ │ │ ├── Point.html │ │ │ │ │ ├── Polygon.html │ │ │ │ │ ├── Polyline.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ └── package-tree.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ └── package-tree.html │ │ │ ├── constant-values.html │ │ │ ├── deprecated-list.html │ │ │ ├── help-doc.html │ │ │ ├── index-all.html │ │ │ ├── index.html │ │ │ ├── overview-frame.html │ │ │ ├── overview-summary.html │ │ │ ├── overview-tree.html │ │ │ ├── package-list │ │ │ ├── resources │ │ │ │ ├── background.gif │ │ │ │ ├── tab.gif │ │ │ │ ├── titlebar.gif │ │ │ │ └── titlebar_end.gif │ │ │ └── stylesheet.css │ │ ├── 0.4.9 │ │ │ ├── allclasses-frame.html │ │ │ ├── allclasses-noframe.html │ │ │ ├── com │ │ │ │ └── mapzen │ │ │ │ │ └── tangram │ │ │ │ │ ├── ConfigChooser.html │ │ │ │ │ ├── HttpHandler.html │ │ │ │ │ ├── LabelPickResult.LabelType.html │ │ │ │ │ ├── LabelPickResult.html │ │ │ │ │ ├── LngLat.html │ │ │ │ │ ├── MapController.CameraType.html │ │ │ │ │ ├── MapController.DebugFlag.html │ │ │ │ │ ├── MapController.EaseType.html │ │ │ │ │ ├── MapController.FeaturePickListener.html │ │ │ │ │ ├── MapController.FrameCaptureCallback.html │ │ │ │ │ ├── MapController.LabelPickListener.html │ │ │ │ │ ├── MapController.MarkerPickListener.html │ │ │ │ │ ├── MapController.ViewCompleteListener.html │ │ │ │ │ ├── MapController.html │ │ │ │ │ ├── MapData.html │ │ │ │ │ ├── MapView.OnMapReadyCallback.html │ │ │ │ │ ├── MapView.html │ │ │ │ │ ├── Marker.html │ │ │ │ │ ├── MarkerPickResult.html │ │ │ │ │ ├── SceneUpdate.html │ │ │ │ │ ├── TouchInput.DoubleTapResponder.html │ │ │ │ │ ├── TouchInput.Gestures.html │ │ │ │ │ ├── TouchInput.LongPressResponder.html │ │ │ │ │ ├── TouchInput.PanResponder.html │ │ │ │ │ ├── TouchInput.RotateResponder.html │ │ │ │ │ ├── TouchInput.ScaleResponder.html │ │ │ │ │ ├── TouchInput.ShoveResponder.html │ │ │ │ │ ├── TouchInput.TapResponder.html │ │ │ │ │ ├── TouchInput.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ └── package-tree.html │ │ │ ├── constant-values.html │ │ │ ├── deprecated-list.html │ │ │ ├── help-doc.html │ │ │ ├── index-all.html │ │ │ ├── index.html │ │ │ ├── overview-tree.html │ │ │ ├── package-list │ │ │ ├── resources │ │ │ │ ├── background.gif │ │ │ │ ├── tab.gif │ │ │ │ ├── titlebar.gif │ │ │ │ └── titlebar_end.gif │ │ │ └── stylesheet.css │ │ ├── 0.4 │ │ │ ├── allclasses-frame.html │ │ │ ├── allclasses-noframe.html │ │ │ ├── com │ │ │ │ └── mapzen │ │ │ │ │ └── tangram │ │ │ │ │ ├── ConfigChooser.html │ │ │ │ │ ├── HttpHandler.html │ │ │ │ │ ├── LngLat.html │ │ │ │ │ ├── MapController.CameraType.html │ │ │ │ │ ├── MapController.DebugFlag.html │ │ │ │ │ ├── MapController.EaseType.html │ │ │ │ │ ├── MapController.FeaturePickListener.html │ │ │ │ │ ├── MapController.FrameCaptureCallback.html │ │ │ │ │ ├── MapController.ViewCompleteListener.html │ │ │ │ │ ├── MapController.html │ │ │ │ │ ├── MapData.html │ │ │ │ │ ├── MapView.OnMapReadyCallback.html │ │ │ │ │ ├── MapView.html │ │ │ │ │ ├── TouchInput.DoubleTapResponder.html │ │ │ │ │ ├── TouchInput.Gestures.html │ │ │ │ │ ├── TouchInput.LongPressResponder.html │ │ │ │ │ ├── TouchInput.PanResponder.html │ │ │ │ │ ├── TouchInput.RotateResponder.html │ │ │ │ │ ├── TouchInput.ScaleResponder.html │ │ │ │ │ ├── TouchInput.ShoveResponder.html │ │ │ │ │ ├── TouchInput.TapResponder.html │ │ │ │ │ ├── TouchInput.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ └── package-tree.html │ │ │ ├── constant-values.html │ │ │ ├── deprecated-list.html │ │ │ ├── help-doc.html │ │ │ ├── index-all.html │ │ │ ├── index.html │ │ │ ├── overview-tree.html │ │ │ ├── package-list │ │ │ ├── resources │ │ │ │ ├── background.gif │ │ │ │ ├── tab.gif │ │ │ │ ├── titlebar.gif │ │ │ │ └── titlebar_end.gif │ │ │ └── stylesheet.css │ │ ├── 0.5.0 │ │ │ ├── allclasses-frame.html │ │ │ ├── allclasses-noframe.html │ │ │ ├── com │ │ │ │ └── mapzen │ │ │ │ │ └── tangram │ │ │ │ │ ├── ConfigChooser.html │ │ │ │ │ ├── HttpHandler.html │ │ │ │ │ ├── LabelPickResult.LabelType.html │ │ │ │ │ ├── LabelPickResult.html │ │ │ │ │ ├── LngLat.html │ │ │ │ │ ├── MapController.CameraType.html │ │ │ │ │ ├── MapController.DebugFlag.html │ │ │ │ │ ├── MapController.EaseType.html │ │ │ │ │ ├── MapController.FeaturePickListener.html │ │ │ │ │ ├── MapController.FrameCaptureCallback.html │ │ │ │ │ ├── MapController.LabelPickListener.html │ │ │ │ │ ├── MapController.MarkerPickListener.html │ │ │ │ │ ├── MapController.ViewCompleteListener.html │ │ │ │ │ ├── MapController.html │ │ │ │ │ ├── MapData.html │ │ │ │ │ ├── MapView.OnMapReadyCallback.html │ │ │ │ │ ├── MapView.html │ │ │ │ │ ├── Marker.html │ │ │ │ │ ├── MarkerPickResult.html │ │ │ │ │ ├── SceneUpdate.html │ │ │ │ │ ├── TouchInput.DoubleTapResponder.html │ │ │ │ │ ├── TouchInput.Gestures.html │ │ │ │ │ ├── TouchInput.LongPressResponder.html │ │ │ │ │ ├── TouchInput.PanResponder.html │ │ │ │ │ ├── TouchInput.RotateResponder.html │ │ │ │ │ ├── TouchInput.ScaleResponder.html │ │ │ │ │ ├── TouchInput.ShoveResponder.html │ │ │ │ │ ├── TouchInput.TapResponder.html │ │ │ │ │ ├── TouchInput.html │ │ │ │ │ ├── geometry │ │ │ │ │ ├── Geometry.html │ │ │ │ │ ├── Point.html │ │ │ │ │ ├── Polygon.html │ │ │ │ │ ├── Polyline.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ └── package-tree.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ └── package-tree.html │ │ │ ├── constant-values.html │ │ │ ├── deprecated-list.html │ │ │ ├── help-doc.html │ │ │ ├── index-all.html │ │ │ ├── index.html │ │ │ ├── overview-frame.html │ │ │ ├── overview-summary.html │ │ │ ├── overview-tree.html │ │ │ ├── package-list │ │ │ ├── script.js │ │ │ └── stylesheet.css │ │ ├── 0.5.1 │ │ │ ├── allclasses-frame.html │ │ │ ├── allclasses-noframe.html │ │ │ ├── com │ │ │ │ └── mapzen │ │ │ │ │ └── tangram │ │ │ │ │ ├── ConfigChooser.html │ │ │ │ │ ├── HttpHandler.html │ │ │ │ │ ├── LabelPickResult.LabelType.html │ │ │ │ │ ├── LabelPickResult.html │ │ │ │ │ ├── LngLat.html │ │ │ │ │ ├── MapController.CameraType.html │ │ │ │ │ ├── MapController.DebugFlag.html │ │ │ │ │ ├── MapController.EaseType.html │ │ │ │ │ ├── MapController.FeaturePickListener.html │ │ │ │ │ ├── MapController.FrameCaptureCallback.html │ │ │ │ │ ├── MapController.LabelPickListener.html │ │ │ │ │ ├── MapController.MarkerPickListener.html │ │ │ │ │ ├── MapController.ViewCompleteListener.html │ │ │ │ │ ├── MapController.html │ │ │ │ │ ├── MapData.html │ │ │ │ │ ├── MapView.OnMapReadyCallback.html │ │ │ │ │ ├── MapView.html │ │ │ │ │ ├── Marker.html │ │ │ │ │ ├── MarkerPickResult.html │ │ │ │ │ ├── SceneUpdate.html │ │ │ │ │ ├── TouchInput.DoubleTapResponder.html │ │ │ │ │ ├── TouchInput.Gestures.html │ │ │ │ │ ├── TouchInput.LongPressResponder.html │ │ │ │ │ ├── TouchInput.PanResponder.html │ │ │ │ │ ├── TouchInput.RotateResponder.html │ │ │ │ │ ├── TouchInput.ScaleResponder.html │ │ │ │ │ ├── TouchInput.ShoveResponder.html │ │ │ │ │ ├── TouchInput.TapResponder.html │ │ │ │ │ ├── TouchInput.html │ │ │ │ │ ├── geometry │ │ │ │ │ ├── Geometry.html │ │ │ │ │ ├── Point.html │ │ │ │ │ ├── Polygon.html │ │ │ │ │ ├── Polyline.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ └── package-tree.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ └── package-tree.html │ │ │ ├── constant-values.html │ │ │ ├── deprecated-list.html │ │ │ ├── help-doc.html │ │ │ ├── index-all.html │ │ │ ├── index.html │ │ │ ├── overview-frame.html │ │ │ ├── overview-summary.html │ │ │ ├── overview-tree.html │ │ │ ├── package-list │ │ │ ├── script.js │ │ │ └── stylesheet.css │ │ ├── 0.6.1 │ │ │ ├── allclasses-frame.html │ │ │ ├── allclasses-noframe.html │ │ │ ├── com │ │ │ │ └── mapzen │ │ │ │ │ └── tangram │ │ │ │ │ ├── ConfigChooser.html │ │ │ │ │ ├── HttpHandler.html │ │ │ │ │ ├── LabelPickResult.LabelType.html │ │ │ │ │ ├── LabelPickResult.html │ │ │ │ │ ├── LngLat.html │ │ │ │ │ ├── MapController.CameraType.html │ │ │ │ │ ├── MapController.DebugFlag.html │ │ │ │ │ ├── MapController.EaseType.html │ │ │ │ │ ├── MapController.Error.html │ │ │ │ │ ├── MapController.FeaturePickListener.html │ │ │ │ │ ├── MapController.FrameCaptureCallback.html │ │ │ │ │ ├── MapController.LabelPickListener.html │ │ │ │ │ ├── MapController.MarkerPickListener.html │ │ │ │ │ ├── MapController.SceneUpdateErrorListener.html │ │ │ │ │ ├── MapController.ViewCompleteListener.html │ │ │ │ │ ├── MapController.html │ │ │ │ │ ├── MapData.html │ │ │ │ │ ├── MapView.OnMapReadyCallback.html │ │ │ │ │ ├── MapView.html │ │ │ │ │ ├── Marker.html │ │ │ │ │ ├── MarkerPickResult.html │ │ │ │ │ ├── SceneUpdate.html │ │ │ │ │ ├── SceneUpdateError.html │ │ │ │ │ ├── TouchInput.DoubleTapResponder.html │ │ │ │ │ ├── TouchInput.Gestures.html │ │ │ │ │ ├── TouchInput.LongPressResponder.html │ │ │ │ │ ├── TouchInput.PanResponder.html │ │ │ │ │ ├── TouchInput.RotateResponder.html │ │ │ │ │ ├── TouchInput.ScaleResponder.html │ │ │ │ │ ├── TouchInput.ShoveResponder.html │ │ │ │ │ ├── TouchInput.TapResponder.html │ │ │ │ │ ├── TouchInput.html │ │ │ │ │ ├── geometry │ │ │ │ │ ├── Geometry.html │ │ │ │ │ ├── Point.html │ │ │ │ │ ├── Polygon.html │ │ │ │ │ ├── Polyline.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ └── package-tree.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ └── package-tree.html │ │ │ ├── constant-values.html │ │ │ ├── deprecated-list.html │ │ │ ├── help-doc.html │ │ │ ├── index-all.html │ │ │ ├── index.html │ │ │ ├── overview-frame.html │ │ │ ├── overview-summary.html │ │ │ ├── overview-tree.html │ │ │ ├── package-list │ │ │ ├── script.js │ │ │ └── stylesheet.css │ │ ├── 0.7.0 │ │ │ ├── allclasses-frame.html │ │ │ ├── allclasses-noframe.html │ │ │ ├── com │ │ │ │ └── mapzen │ │ │ │ │ └── tangram │ │ │ │ │ ├── ConfigChooser.html │ │ │ │ │ ├── HttpHandler.html │ │ │ │ │ ├── LabelPickResult.LabelType.html │ │ │ │ │ ├── LabelPickResult.html │ │ │ │ │ ├── LngLat.html │ │ │ │ │ ├── MapController.CameraType.html │ │ │ │ │ ├── MapController.DebugFlag.html │ │ │ │ │ ├── MapController.EaseType.html │ │ │ │ │ ├── MapController.Error.html │ │ │ │ │ ├── MapController.FeaturePickListener.html │ │ │ │ │ ├── MapController.FrameCaptureCallback.html │ │ │ │ │ ├── MapController.LabelPickListener.html │ │ │ │ │ ├── MapController.MarkerPickListener.html │ │ │ │ │ ├── MapController.SceneUpdateErrorListener.html │ │ │ │ │ ├── MapController.ViewCompleteListener.html │ │ │ │ │ ├── MapController.html │ │ │ │ │ ├── MapData.html │ │ │ │ │ ├── MapView.OnMapReadyCallback.html │ │ │ │ │ ├── MapView.html │ │ │ │ │ ├── Marker.html │ │ │ │ │ ├── MarkerPickResult.html │ │ │ │ │ ├── SceneUpdate.html │ │ │ │ │ ├── SceneUpdateError.html │ │ │ │ │ ├── TouchInput.DoubleTapResponder.html │ │ │ │ │ ├── TouchInput.Gestures.html │ │ │ │ │ ├── TouchInput.LongPressResponder.html │ │ │ │ │ ├── TouchInput.PanResponder.html │ │ │ │ │ ├── TouchInput.RotateResponder.html │ │ │ │ │ ├── TouchInput.ScaleResponder.html │ │ │ │ │ ├── TouchInput.ShoveResponder.html │ │ │ │ │ ├── TouchInput.TapResponder.html │ │ │ │ │ ├── TouchInput.html │ │ │ │ │ ├── geometry │ │ │ │ │ ├── Geometry.html │ │ │ │ │ ├── Point.html │ │ │ │ │ ├── Polygon.html │ │ │ │ │ ├── Polyline.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ └── package-tree.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ └── package-tree.html │ │ │ ├── constant-values.html │ │ │ ├── deprecated-list.html │ │ │ ├── help-doc.html │ │ │ ├── index-all.html │ │ │ ├── index.html │ │ │ ├── overview-frame.html │ │ │ ├── overview-summary.html │ │ │ ├── overview-tree.html │ │ │ ├── package-list │ │ │ ├── script.js │ │ │ └── stylesheet.css │ │ └── 0.9.0 │ │ │ ├── allclasses-frame.html │ │ │ ├── allclasses-noframe.html │ │ │ ├── com │ │ │ └── mapzen │ │ │ │ └── tangram │ │ │ │ ├── CachePolicy.html │ │ │ │ ├── ConfigChooser.html │ │ │ │ ├── HttpHandler.html │ │ │ │ ├── LabelPickResult.LabelType.html │ │ │ │ ├── LabelPickResult.html │ │ │ │ ├── LngLat.html │ │ │ │ ├── MapController.CameraType.html │ │ │ │ ├── MapController.DebugFlag.html │ │ │ │ ├── MapController.EaseType.html │ │ │ │ ├── MapController.Error.html │ │ │ │ ├── MapController.FeaturePickListener.html │ │ │ │ ├── MapController.FrameCaptureCallback.html │ │ │ │ ├── MapController.LabelPickListener.html │ │ │ │ ├── MapController.MarkerPickListener.html │ │ │ │ ├── MapController.SceneLoadListener.html │ │ │ │ ├── MapController.ViewCompleteListener.html │ │ │ │ ├── MapController.html │ │ │ │ ├── MapData.html │ │ │ │ ├── MapView.html │ │ │ │ ├── Marker.html │ │ │ │ ├── MarkerPickResult.html │ │ │ │ ├── SceneError.html │ │ │ │ ├── SceneUpdate.html │ │ │ │ ├── TouchInput.DoubleTapResponder.html │ │ │ │ ├── TouchInput.Gestures.html │ │ │ │ ├── TouchInput.LongPressResponder.html │ │ │ │ ├── TouchInput.PanResponder.html │ │ │ │ ├── TouchInput.RotateResponder.html │ │ │ │ ├── TouchInput.ScaleResponder.html │ │ │ │ ├── TouchInput.ShoveResponder.html │ │ │ │ ├── TouchInput.TapResponder.html │ │ │ │ ├── TouchInput.html │ │ │ │ ├── geometry │ │ │ │ ├── Geometry.html │ │ │ │ ├── Point.html │ │ │ │ ├── Polygon.html │ │ │ │ ├── Polyline.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ └── package-tree.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ └── package-tree.html │ │ │ ├── constant-values.html │ │ │ ├── deprecated-list.html │ │ │ ├── help-doc.html │ │ │ ├── index-all.html │ │ │ ├── index.html │ │ │ ├── overview-frame.html │ │ │ ├── overview-summary.html │ │ │ ├── overview-tree.html │ │ │ ├── package-list │ │ │ ├── script.js │ │ │ └── stylesheet.css │ ├── iOS-API.md │ └── ios-framework │ │ ├── 0.10.0 │ │ ├── Classes.html │ │ ├── Classes │ │ │ ├── TGCameraPosition.html │ │ │ ├── TGDefaultURLHandler.html │ │ │ ├── TGGeoPolygon.html │ │ │ ├── TGGeoPolyline.html │ │ │ ├── TGLabelPickResult.html │ │ │ ├── TGMapData.html │ │ │ ├── TGMapView.html │ │ │ ├── TGMarker.html │ │ │ ├── TGMarkerPickResult.html │ │ │ └── TGSceneUpdate.html │ │ ├── Constants.html │ │ ├── Enums.html │ │ ├── Enums │ │ │ ├── TGCameraType.html │ │ │ ├── TGDebugFlag.html │ │ │ ├── TGEaseType.html │ │ │ ├── TGError.html │ │ │ └── TGLabelType.html │ │ ├── Functions.html │ │ ├── Protocols.html │ │ ├── Protocols │ │ │ ├── TGMapViewDelegate.html │ │ │ ├── TGRecognizerDelegate.html │ │ │ └── TGURLHandler.html │ │ ├── Structs.html │ │ ├── Structs │ │ │ └── TGCoordinateBounds.html │ │ ├── Type Definitions.html │ │ ├── badge.svg │ │ ├── css │ │ │ ├── highlight.css │ │ │ └── jazzy.css │ │ ├── docsets │ │ │ ├── Tangram iOS SDK.docset │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ ├── Documents │ │ │ │ │ ├── Classes.html │ │ │ │ │ ├── Classes │ │ │ │ │ │ ├── TGCameraPosition.html │ │ │ │ │ │ ├── TGDefaultURLHandler.html │ │ │ │ │ │ ├── TGGeoPolygon.html │ │ │ │ │ │ ├── TGGeoPolyline.html │ │ │ │ │ │ ├── TGLabelPickResult.html │ │ │ │ │ │ ├── TGMapData.html │ │ │ │ │ │ ├── TGMapView.html │ │ │ │ │ │ ├── TGMarker.html │ │ │ │ │ │ ├── TGMarkerPickResult.html │ │ │ │ │ │ └── TGSceneUpdate.html │ │ │ │ │ ├── Constants.html │ │ │ │ │ ├── Enums.html │ │ │ │ │ ├── Enums │ │ │ │ │ │ ├── TGCameraType.html │ │ │ │ │ │ ├── TGDebugFlag.html │ │ │ │ │ │ ├── TGEaseType.html │ │ │ │ │ │ ├── TGError.html │ │ │ │ │ │ └── TGLabelType.html │ │ │ │ │ ├── Functions.html │ │ │ │ │ ├── Protocols.html │ │ │ │ │ ├── Protocols │ │ │ │ │ │ ├── TGMapViewDelegate.html │ │ │ │ │ │ ├── TGRecognizerDelegate.html │ │ │ │ │ │ └── TGURLHandler.html │ │ │ │ │ ├── Structs.html │ │ │ │ │ ├── Structs │ │ │ │ │ │ └── TGCoordinateBounds.html │ │ │ │ │ ├── Type Definitions.html │ │ │ │ │ ├── badge.svg │ │ │ │ │ ├── css │ │ │ │ │ │ ├── highlight.css │ │ │ │ │ │ └── jazzy.css │ │ │ │ │ ├── img │ │ │ │ │ │ ├── carat.png │ │ │ │ │ │ ├── dash.png │ │ │ │ │ │ ├── gh.png │ │ │ │ │ │ └── spinner.gif │ │ │ │ │ ├── index.html │ │ │ │ │ ├── js │ │ │ │ │ │ ├── jazzy.js │ │ │ │ │ │ ├── jazzy.search.js │ │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ │ ├── lunr.min.js │ │ │ │ │ │ └── typeahead.jquery.js │ │ │ │ │ ├── search.json │ │ │ │ │ └── undocumented.json │ │ │ │ │ └── docSet.dsidx │ │ │ └── Tangram iOS SDK.tgz │ │ ├── img │ │ │ ├── carat.png │ │ │ ├── dash.png │ │ │ ├── gh.png │ │ │ └── spinner.gif │ │ ├── index.html │ │ ├── js │ │ │ ├── jazzy.js │ │ │ ├── jazzy.search.js │ │ │ ├── jquery.min.js │ │ │ ├── lunr.min.js │ │ │ └── typeahead.jquery.js │ │ ├── search.json │ │ └── undocumented.json │ │ ├── 0.11.0 │ │ ├── Classes.html │ │ ├── Classes │ │ │ ├── TGCameraPosition.html │ │ │ ├── TGDefaultURLHandler.html │ │ │ ├── TGGeoPolygon.html │ │ │ ├── TGGeoPolyline.html │ │ │ ├── TGLabelPickResult.html │ │ │ ├── TGMapData.html │ │ │ ├── TGMapFeature.html │ │ │ ├── TGMapView.html │ │ │ ├── TGMarker.html │ │ │ ├── TGMarkerPickResult.html │ │ │ └── TGSceneUpdate.html │ │ ├── Constants.html │ │ ├── Enums.html │ │ ├── Enums │ │ │ ├── TGCameraType.html │ │ │ ├── TGDebugFlag.html │ │ │ ├── TGEaseType.html │ │ │ ├── TGError.html │ │ │ └── TGLabelType.html │ │ ├── Functions.html │ │ ├── Protocols.html │ │ ├── Protocols │ │ │ ├── TGMapViewDelegate.html │ │ │ ├── TGRecognizerDelegate.html │ │ │ └── TGURLHandler.html │ │ ├── Structs.html │ │ ├── Structs │ │ │ └── TGCoordinateBounds.html │ │ ├── Type Definitions.html │ │ ├── badge.svg │ │ ├── css │ │ │ ├── highlight.css │ │ │ └── jazzy.css │ │ ├── docsets │ │ │ ├── Tangram iOS SDK.docset │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ ├── Documents │ │ │ │ │ ├── Classes.html │ │ │ │ │ ├── Classes │ │ │ │ │ │ ├── TGCameraPosition.html │ │ │ │ │ │ ├── TGDefaultURLHandler.html │ │ │ │ │ │ ├── TGGeoPolygon.html │ │ │ │ │ │ ├── TGGeoPolyline.html │ │ │ │ │ │ ├── TGLabelPickResult.html │ │ │ │ │ │ ├── TGMapData.html │ │ │ │ │ │ ├── TGMapFeature.html │ │ │ │ │ │ ├── TGMapView.html │ │ │ │ │ │ ├── TGMarker.html │ │ │ │ │ │ ├── TGMarkerPickResult.html │ │ │ │ │ │ └── TGSceneUpdate.html │ │ │ │ │ ├── Constants.html │ │ │ │ │ ├── Enums.html │ │ │ │ │ ├── Enums │ │ │ │ │ │ ├── TGCameraType.html │ │ │ │ │ │ ├── TGDebugFlag.html │ │ │ │ │ │ ├── TGEaseType.html │ │ │ │ │ │ ├── TGError.html │ │ │ │ │ │ └── TGLabelType.html │ │ │ │ │ ├── Functions.html │ │ │ │ │ ├── Protocols.html │ │ │ │ │ ├── Protocols │ │ │ │ │ │ ├── TGMapViewDelegate.html │ │ │ │ │ │ ├── TGRecognizerDelegate.html │ │ │ │ │ │ └── TGURLHandler.html │ │ │ │ │ ├── Structs.html │ │ │ │ │ ├── Structs │ │ │ │ │ │ └── TGCoordinateBounds.html │ │ │ │ │ ├── Type Definitions.html │ │ │ │ │ ├── badge.svg │ │ │ │ │ ├── css │ │ │ │ │ │ ├── highlight.css │ │ │ │ │ │ └── jazzy.css │ │ │ │ │ ├── img │ │ │ │ │ │ ├── carat.png │ │ │ │ │ │ ├── dash.png │ │ │ │ │ │ ├── gh.png │ │ │ │ │ │ └── spinner.gif │ │ │ │ │ ├── index.html │ │ │ │ │ ├── js │ │ │ │ │ │ ├── jazzy.js │ │ │ │ │ │ ├── jazzy.search.js │ │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ │ ├── lunr.min.js │ │ │ │ │ │ └── typeahead.jquery.js │ │ │ │ │ ├── search.json │ │ │ │ │ └── undocumented.json │ │ │ │ │ └── docSet.dsidx │ │ │ └── Tangram iOS SDK.tgz │ │ ├── img │ │ │ ├── carat.png │ │ │ ├── dash.png │ │ │ ├── gh.png │ │ │ └── spinner.gif │ │ ├── index.html │ │ ├── js │ │ │ ├── jazzy.js │ │ │ ├── jazzy.search.js │ │ │ ├── jquery.min.js │ │ │ ├── lunr.min.js │ │ │ └── typeahead.jquery.js │ │ ├── search.json │ │ └── undocumented.json │ │ ├── 0.5.0 │ │ ├── Classes.html │ │ ├── Classes │ │ │ ├── TGGeoPolygon.html │ │ │ ├── TGGeoPolyline.html │ │ │ ├── TGHttpHandler.html │ │ │ ├── TGLabelPickResult.html │ │ │ ├── TGMapViewController.html │ │ │ ├── TGMarkerPickResult.html │ │ │ └── TGSceneUpdate.html │ │ ├── Constants.html │ │ ├── Enums.html │ │ ├── Enums │ │ │ ├── TGCameraType.html │ │ │ ├── TGDebugFlag.html │ │ │ ├── TGEaseType.html │ │ │ └── TGLabelType.html │ │ ├── Functions.html │ │ ├── Protocols.html │ │ ├── Protocols │ │ │ ├── TGMapViewDelegate.html │ │ │ └── TGRecognizerDelegate.html │ │ ├── Structs.html │ │ ├── Structs │ │ │ └── TGGeoPoint.html │ │ ├── Type Definitions.html │ │ ├── css │ │ │ ├── highlight.css │ │ │ └── jazzy.css │ │ ├── docsets │ │ │ ├── Mapzen.docset │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ ├── Documents │ │ │ │ │ ├── Classes.html │ │ │ │ │ ├── Classes │ │ │ │ │ │ ├── TGGeoPolygon.html │ │ │ │ │ │ ├── TGGeoPolyline.html │ │ │ │ │ │ ├── TGHttpHandler.html │ │ │ │ │ │ ├── TGLabelPickResult.html │ │ │ │ │ │ ├── TGMapViewController.html │ │ │ │ │ │ ├── TGMarkerPickResult.html │ │ │ │ │ │ └── TGSceneUpdate.html │ │ │ │ │ ├── Constants.html │ │ │ │ │ ├── Enums.html │ │ │ │ │ ├── Enums │ │ │ │ │ │ ├── TGCameraType.html │ │ │ │ │ │ ├── TGDebugFlag.html │ │ │ │ │ │ ├── TGEaseType.html │ │ │ │ │ │ └── TGLabelType.html │ │ │ │ │ ├── Functions.html │ │ │ │ │ ├── Protocols.html │ │ │ │ │ ├── Protocols │ │ │ │ │ │ ├── TGMapViewDelegate.html │ │ │ │ │ │ └── TGRecognizerDelegate.html │ │ │ │ │ ├── Structs.html │ │ │ │ │ ├── Structs │ │ │ │ │ │ └── TGGeoPoint.html │ │ │ │ │ ├── Type Definitions.html │ │ │ │ │ ├── css │ │ │ │ │ │ ├── highlight.css │ │ │ │ │ │ └── jazzy.css │ │ │ │ │ ├── img │ │ │ │ │ │ ├── carat.png │ │ │ │ │ │ ├── dash.png │ │ │ │ │ │ └── gh.png │ │ │ │ │ ├── index.html │ │ │ │ │ ├── js │ │ │ │ │ │ ├── jazzy.js │ │ │ │ │ │ └── jquery.min.js │ │ │ │ │ └── undocumented.json │ │ │ │ │ └── docSet.dsidx │ │ │ └── Mapzen.tgz │ │ ├── img │ │ │ ├── carat.png │ │ │ ├── dash.png │ │ │ └── gh.png │ │ ├── index.html │ │ ├── js │ │ │ ├── jazzy.js │ │ │ └── jquery.min.js │ │ └── undocumented.json │ │ ├── 0.5.1 │ │ ├── Classes.html │ │ ├── Classes │ │ │ ├── TGGeoPolygon.html │ │ │ ├── TGGeoPolyline.html │ │ │ ├── TGHttpHandler.html │ │ │ ├── TGLabelPickResult.html │ │ │ ├── TGMapData.html │ │ │ ├── TGMapViewController.html │ │ │ ├── TGMarker.html │ │ │ ├── TGMarkerPickResult.html │ │ │ └── TGSceneUpdate.html │ │ ├── Constants.html │ │ ├── Enums.html │ │ ├── Enums │ │ │ ├── TGCameraType.html │ │ │ ├── TGDebugFlag.html │ │ │ ├── TGEaseType.html │ │ │ └── TGLabelType.html │ │ ├── Functions.html │ │ ├── Protocols.html │ │ ├── Protocols │ │ │ ├── TGMapViewDelegate.html │ │ │ └── TGRecognizerDelegate.html │ │ ├── Structs.html │ │ ├── Structs │ │ │ └── TGGeoPoint.html │ │ ├── Type Definitions.html │ │ ├── css │ │ │ ├── highlight.css │ │ │ └── jazzy.css │ │ ├── docsets │ │ │ ├── Mapzen.docset │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ ├── Documents │ │ │ │ │ ├── Classes.html │ │ │ │ │ ├── Classes │ │ │ │ │ │ ├── TGGeoPolygon.html │ │ │ │ │ │ ├── TGGeoPolyline.html │ │ │ │ │ │ ├── TGHttpHandler.html │ │ │ │ │ │ ├── TGLabelPickResult.html │ │ │ │ │ │ ├── TGMapData.html │ │ │ │ │ │ ├── TGMapViewController.html │ │ │ │ │ │ ├── TGMarker.html │ │ │ │ │ │ ├── TGMarkerPickResult.html │ │ │ │ │ │ └── TGSceneUpdate.html │ │ │ │ │ ├── Constants.html │ │ │ │ │ ├── Enums.html │ │ │ │ │ ├── Enums │ │ │ │ │ │ ├── TGCameraType.html │ │ │ │ │ │ ├── TGDebugFlag.html │ │ │ │ │ │ ├── TGEaseType.html │ │ │ │ │ │ └── TGLabelType.html │ │ │ │ │ ├── Functions.html │ │ │ │ │ ├── Protocols.html │ │ │ │ │ ├── Protocols │ │ │ │ │ │ ├── TGMapViewDelegate.html │ │ │ │ │ │ └── TGRecognizerDelegate.html │ │ │ │ │ ├── Structs.html │ │ │ │ │ ├── Structs │ │ │ │ │ │ └── TGGeoPoint.html │ │ │ │ │ ├── Type Definitions.html │ │ │ │ │ ├── css │ │ │ │ │ │ ├── highlight.css │ │ │ │ │ │ └── jazzy.css │ │ │ │ │ ├── img │ │ │ │ │ │ ├── carat.png │ │ │ │ │ │ ├── dash.png │ │ │ │ │ │ └── gh.png │ │ │ │ │ ├── index.html │ │ │ │ │ ├── js │ │ │ │ │ │ ├── jazzy.js │ │ │ │ │ │ └── jquery.min.js │ │ │ │ │ └── undocumented.json │ │ │ │ │ └── docSet.dsidx │ │ │ └── Mapzen.tgz │ │ ├── img │ │ │ ├── carat.png │ │ │ ├── dash.png │ │ │ └── gh.png │ │ ├── index.html │ │ ├── js │ │ │ ├── jazzy.js │ │ │ └── jquery.min.js │ │ └── undocumented.json │ │ ├── 0.6.0 │ │ ├── Classes.html │ │ ├── Classes │ │ │ ├── TGGeoPolygon.html │ │ │ ├── TGGeoPolyline.html │ │ │ ├── TGHttpHandler.html │ │ │ ├── TGLabelPickResult.html │ │ │ ├── TGMapData.html │ │ │ ├── TGMapViewController.html │ │ │ ├── TGMarker.html │ │ │ ├── TGMarkerPickResult.html │ │ │ └── TGSceneUpdate.html │ │ ├── Constants.html │ │ ├── Enums.html │ │ ├── Enums │ │ │ ├── TGCameraType.html │ │ │ ├── TGDebugFlag.html │ │ │ ├── TGEaseType.html │ │ │ ├── TGError.html │ │ │ └── TGLabelType.html │ │ ├── Functions.html │ │ ├── Protocols.html │ │ ├── Protocols │ │ │ ├── TGMapViewDelegate.html │ │ │ └── TGRecognizerDelegate.html │ │ ├── Structs.html │ │ ├── Structs │ │ │ └── TGGeoPoint.html │ │ ├── Type Definitions.html │ │ ├── css │ │ │ ├── highlight.css │ │ │ └── jazzy.css │ │ ├── docsets │ │ │ ├── Mapzen.docset │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ ├── Documents │ │ │ │ │ ├── Classes.html │ │ │ │ │ ├── Classes │ │ │ │ │ │ ├── TGGeoPolygon.html │ │ │ │ │ │ ├── TGGeoPolyline.html │ │ │ │ │ │ ├── TGHttpHandler.html │ │ │ │ │ │ ├── TGLabelPickResult.html │ │ │ │ │ │ ├── TGMapData.html │ │ │ │ │ │ ├── TGMapViewController.html │ │ │ │ │ │ ├── TGMarker.html │ │ │ │ │ │ ├── TGMarkerPickResult.html │ │ │ │ │ │ └── TGSceneUpdate.html │ │ │ │ │ ├── Constants.html │ │ │ │ │ ├── Enums.html │ │ │ │ │ ├── Enums │ │ │ │ │ │ ├── TGCameraType.html │ │ │ │ │ │ ├── TGDebugFlag.html │ │ │ │ │ │ ├── TGEaseType.html │ │ │ │ │ │ ├── TGError.html │ │ │ │ │ │ └── TGLabelType.html │ │ │ │ │ ├── Functions.html │ │ │ │ │ ├── Protocols.html │ │ │ │ │ ├── Protocols │ │ │ │ │ │ ├── TGMapViewDelegate.html │ │ │ │ │ │ └── TGRecognizerDelegate.html │ │ │ │ │ ├── Structs.html │ │ │ │ │ ├── Structs │ │ │ │ │ │ └── TGGeoPoint.html │ │ │ │ │ ├── Type Definitions.html │ │ │ │ │ ├── css │ │ │ │ │ │ ├── highlight.css │ │ │ │ │ │ └── jazzy.css │ │ │ │ │ ├── img │ │ │ │ │ │ ├── carat.png │ │ │ │ │ │ ├── dash.png │ │ │ │ │ │ └── gh.png │ │ │ │ │ ├── index.html │ │ │ │ │ ├── js │ │ │ │ │ │ ├── jazzy.js │ │ │ │ │ │ └── jquery.min.js │ │ │ │ │ └── undocumented.json │ │ │ │ │ └── docSet.dsidx │ │ │ └── Mapzen.tgz │ │ ├── img │ │ │ ├── carat.png │ │ │ ├── dash.png │ │ │ └── gh.png │ │ ├── index.html │ │ ├── js │ │ │ ├── jazzy.js │ │ │ └── jquery.min.js │ │ └── undocumented.json │ │ ├── 0.6.1 │ │ ├── Classes.html │ │ ├── Classes │ │ │ ├── TGGeoPolygon.html │ │ │ ├── TGGeoPolyline.html │ │ │ ├── TGHttpHandler.html │ │ │ ├── TGLabelPickResult.html │ │ │ ├── TGMapData.html │ │ │ ├── TGMapViewController.html │ │ │ ├── TGMarker.html │ │ │ ├── TGMarkerPickResult.html │ │ │ └── TGSceneUpdate.html │ │ ├── Constants.html │ │ ├── Enums.html │ │ ├── Enums │ │ │ ├── TGCameraType.html │ │ │ ├── TGDebugFlag.html │ │ │ ├── TGEaseType.html │ │ │ ├── TGError.html │ │ │ └── TGLabelType.html │ │ ├── Functions.html │ │ ├── Protocols.html │ │ ├── Protocols │ │ │ ├── TGMapViewDelegate.html │ │ │ └── TGRecognizerDelegate.html │ │ ├── Structs.html │ │ ├── Structs │ │ │ └── TGGeoPoint.html │ │ ├── Type Definitions.html │ │ ├── css │ │ │ ├── highlight.css │ │ │ └── jazzy.css │ │ ├── docsets │ │ │ ├── Mapzen.docset │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ ├── Documents │ │ │ │ │ ├── Classes.html │ │ │ │ │ ├── Classes │ │ │ │ │ │ ├── TGGeoPolygon.html │ │ │ │ │ │ ├── TGGeoPolyline.html │ │ │ │ │ │ ├── TGHttpHandler.html │ │ │ │ │ │ ├── TGLabelPickResult.html │ │ │ │ │ │ ├── TGMapData.html │ │ │ │ │ │ ├── TGMapViewController.html │ │ │ │ │ │ ├── TGMarker.html │ │ │ │ │ │ ├── TGMarkerPickResult.html │ │ │ │ │ │ └── TGSceneUpdate.html │ │ │ │ │ ├── Constants.html │ │ │ │ │ ├── Enums.html │ │ │ │ │ ├── Enums │ │ │ │ │ │ ├── TGCameraType.html │ │ │ │ │ │ ├── TGDebugFlag.html │ │ │ │ │ │ ├── TGEaseType.html │ │ │ │ │ │ ├── TGError.html │ │ │ │ │ │ └── TGLabelType.html │ │ │ │ │ ├── Functions.html │ │ │ │ │ ├── Protocols.html │ │ │ │ │ ├── Protocols │ │ │ │ │ │ ├── TGMapViewDelegate.html │ │ │ │ │ │ └── TGRecognizerDelegate.html │ │ │ │ │ ├── Structs.html │ │ │ │ │ ├── Structs │ │ │ │ │ │ └── TGGeoPoint.html │ │ │ │ │ ├── Type Definitions.html │ │ │ │ │ ├── css │ │ │ │ │ │ ├── highlight.css │ │ │ │ │ │ └── jazzy.css │ │ │ │ │ ├── img │ │ │ │ │ │ ├── carat.png │ │ │ │ │ │ ├── dash.png │ │ │ │ │ │ └── gh.png │ │ │ │ │ ├── index.html │ │ │ │ │ ├── js │ │ │ │ │ │ ├── jazzy.js │ │ │ │ │ │ └── jquery.min.js │ │ │ │ │ └── undocumented.json │ │ │ │ │ └── docSet.dsidx │ │ │ └── Mapzen.tgz │ │ ├── img │ │ │ ├── carat.png │ │ │ ├── dash.png │ │ │ └── gh.png │ │ ├── index.html │ │ ├── js │ │ │ ├── jazzy.js │ │ │ └── jquery.min.js │ │ └── undocumented.json │ │ ├── 0.7.0 │ │ ├── Classes.html │ │ ├── Classes │ │ │ ├── TGGeoPolygon.html │ │ │ ├── TGGeoPolyline.html │ │ │ ├── TGHttpHandler.html │ │ │ ├── TGLabelPickResult.html │ │ │ ├── TGMapData.html │ │ │ ├── TGMapViewController.html │ │ │ ├── TGMarker.html │ │ │ ├── TGMarkerPickResult.html │ │ │ └── TGSceneUpdate.html │ │ ├── Constants.html │ │ ├── Enums.html │ │ ├── Enums │ │ │ ├── TGCameraType.html │ │ │ ├── TGDebugFlag.html │ │ │ ├── TGEaseType.html │ │ │ ├── TGError.html │ │ │ └── TGLabelType.html │ │ ├── Functions.html │ │ ├── Protocols.html │ │ ├── Protocols │ │ │ ├── TGMapViewDelegate.html │ │ │ └── TGRecognizerDelegate.html │ │ ├── Structs.html │ │ ├── Structs │ │ │ └── TGGeoPoint.html │ │ ├── Type Definitions.html │ │ ├── badge.svg │ │ ├── css │ │ │ ├── highlight.css │ │ │ └── jazzy.css │ │ ├── docsets │ │ │ ├── Mapzen.docset │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ ├── Documents │ │ │ │ │ ├── Classes.html │ │ │ │ │ ├── Classes │ │ │ │ │ │ ├── TGGeoPolygon.html │ │ │ │ │ │ ├── TGGeoPolyline.html │ │ │ │ │ │ ├── TGHttpHandler.html │ │ │ │ │ │ ├── TGLabelPickResult.html │ │ │ │ │ │ ├── TGMapData.html │ │ │ │ │ │ ├── TGMapViewController.html │ │ │ │ │ │ ├── TGMarker.html │ │ │ │ │ │ ├── TGMarkerPickResult.html │ │ │ │ │ │ └── TGSceneUpdate.html │ │ │ │ │ ├── Constants.html │ │ │ │ │ ├── Enums.html │ │ │ │ │ ├── Enums │ │ │ │ │ │ ├── TGCameraType.html │ │ │ │ │ │ ├── TGDebugFlag.html │ │ │ │ │ │ ├── TGEaseType.html │ │ │ │ │ │ ├── TGError.html │ │ │ │ │ │ └── TGLabelType.html │ │ │ │ │ ├── Functions.html │ │ │ │ │ ├── Protocols.html │ │ │ │ │ ├── Protocols │ │ │ │ │ │ ├── TGMapViewDelegate.html │ │ │ │ │ │ └── TGRecognizerDelegate.html │ │ │ │ │ ├── Structs.html │ │ │ │ │ ├── Structs │ │ │ │ │ │ └── TGGeoPoint.html │ │ │ │ │ ├── Type Definitions.html │ │ │ │ │ ├── badge.svg │ │ │ │ │ ├── css │ │ │ │ │ │ ├── highlight.css │ │ │ │ │ │ └── jazzy.css │ │ │ │ │ ├── img │ │ │ │ │ │ ├── carat.png │ │ │ │ │ │ ├── dash.png │ │ │ │ │ │ ├── gh.png │ │ │ │ │ │ └── spinner.gif │ │ │ │ │ ├── index.html │ │ │ │ │ ├── js │ │ │ │ │ │ ├── jazzy.js │ │ │ │ │ │ ├── jazzy.search.js │ │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ │ ├── lunr.min.js │ │ │ │ │ │ └── typeahead.jquery.js │ │ │ │ │ ├── search.json │ │ │ │ │ └── undocumented.json │ │ │ │ │ └── docSet.dsidx │ │ │ └── Mapzen.tgz │ │ ├── img │ │ │ ├── carat.png │ │ │ ├── dash.png │ │ │ ├── gh.png │ │ │ └── spinner.gif │ │ ├── index.html │ │ ├── js │ │ │ ├── jazzy.js │ │ │ ├── jazzy.search.js │ │ │ ├── jquery.min.js │ │ │ ├── lunr.min.js │ │ │ └── typeahead.jquery.js │ │ ├── search.json │ │ └── undocumented.json │ │ └── 0.9.0 │ │ ├── Classes.html │ │ ├── Classes │ │ ├── TGGeoPolygon.html │ │ ├── TGGeoPolyline.html │ │ ├── TGHttpHandler.html │ │ ├── TGLabelPickResult.html │ │ ├── TGMapData.html │ │ ├── TGMapViewController.html │ │ ├── TGMarker.html │ │ ├── TGMarkerPickResult.html │ │ └── TGSceneUpdate.html │ │ ├── Constants.html │ │ ├── Enums.html │ │ ├── Enums │ │ ├── TGCameraType.html │ │ ├── TGDebugFlag.html │ │ ├── TGEaseType.html │ │ ├── TGError.html │ │ └── TGLabelType.html │ │ ├── Functions.html │ │ ├── Protocols.html │ │ ├── Protocols │ │ ├── TGMapViewDelegate.html │ │ └── TGRecognizerDelegate.html │ │ ├── Structs.html │ │ ├── Structs │ │ └── TGGeoPoint.html │ │ ├── Type Definitions.html │ │ ├── badge.svg │ │ ├── css │ │ ├── highlight.css │ │ └── jazzy.css │ │ ├── docsets │ │ ├── Mapzen.docset │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ ├── Documents │ │ │ │ ├── Classes.html │ │ │ │ ├── Classes │ │ │ │ │ ├── TGGeoPolygon.html │ │ │ │ │ ├── TGGeoPolyline.html │ │ │ │ │ ├── TGHttpHandler.html │ │ │ │ │ ├── TGLabelPickResult.html │ │ │ │ │ ├── TGMapData.html │ │ │ │ │ ├── TGMapViewController.html │ │ │ │ │ ├── TGMarker.html │ │ │ │ │ ├── TGMarkerPickResult.html │ │ │ │ │ └── TGSceneUpdate.html │ │ │ │ ├── Constants.html │ │ │ │ ├── Enums.html │ │ │ │ ├── Enums │ │ │ │ │ ├── TGCameraType.html │ │ │ │ │ ├── TGDebugFlag.html │ │ │ │ │ ├── TGEaseType.html │ │ │ │ │ ├── TGError.html │ │ │ │ │ └── TGLabelType.html │ │ │ │ ├── Functions.html │ │ │ │ ├── Protocols.html │ │ │ │ ├── Protocols │ │ │ │ │ ├── TGMapViewDelegate.html │ │ │ │ │ └── TGRecognizerDelegate.html │ │ │ │ ├── Structs.html │ │ │ │ ├── Structs │ │ │ │ │ └── TGGeoPoint.html │ │ │ │ ├── Type Definitions.html │ │ │ │ ├── badge.svg │ │ │ │ ├── css │ │ │ │ │ ├── highlight.css │ │ │ │ │ └── jazzy.css │ │ │ │ ├── img │ │ │ │ │ ├── carat.png │ │ │ │ │ ├── dash.png │ │ │ │ │ ├── gh.png │ │ │ │ │ └── spinner.gif │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── jazzy.js │ │ │ │ │ ├── jazzy.search.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── lunr.min.js │ │ │ │ │ └── typeahead.jquery.js │ │ │ │ ├── search.json │ │ │ │ └── undocumented.json │ │ │ │ └── docSet.dsidx │ │ └── Mapzen.tgz │ │ ├── img │ │ ├── carat.png │ │ ├── dash.png │ │ ├── gh.png │ │ └── spinner.gif │ │ ├── index.html │ │ ├── js │ │ ├── jazzy.js │ │ ├── jazzy.search.js │ │ ├── jquery.min.js │ │ ├── lunr.min.js │ │ └── typeahead.jquery.js │ │ ├── search.json │ │ └── undocumented.json ├── Overviews │ ├── Bundling.md │ ├── Cameras-Overview.md │ ├── Filters-Overview.md │ ├── Lights-Overview.md │ ├── Materials-Overview.md │ ├── Projections-Overview.md │ ├── Raster-Overview.md │ ├── Scene-File.md │ ├── Shaders-Overview.md │ ├── Styles-Overview.md │ └── Tangram-Overview.md ├── Syntax-Reference │ ├── cameras.md │ ├── draw.md │ ├── fonts.md │ ├── global.md │ ├── import.md │ ├── layers.md │ ├── lights.md │ ├── materials.md │ ├── scene.md │ ├── shaders.md │ ├── sources.md │ ├── styles.md │ ├── textures.md │ └── yaml.md ├── Tutorials │ ├── Demos.md │ ├── Tangram-Setup.md │ ├── android-walkthrough.md │ ├── custom-styles.md │ ├── editing-basemaps.md │ ├── iOS-walkthrough.md │ └── walkthrough.md ├── images │ ├── 002.png │ ├── 020.png │ ├── 200.png │ ├── XCode-Codesign.png │ ├── XCode-CustomClass.png │ ├── XCode-GLKView.png │ ├── XCode-SceneResources.png │ ├── amb-dif-spe.png │ ├── ambient-sphere.png │ ├── ambient-surface.png │ ├── cameras-axis.jpg │ ├── cameras-flat.jpg │ ├── cameras-focal_length.jpg │ ├── cameras-isometric.jpg │ ├── cameras-perspective.jpg │ ├── cameras-vanishing_point.jpg │ ├── change-water-color.png │ ├── color_wheel_730.png │ ├── diffuse-surface.png │ ├── diffuse.png │ ├── dynamic-normals.png │ ├── earth.png │ ├── emission-surface.png │ ├── emission.png │ ├── example.png │ ├── flat.jpg │ ├── geometry-builder.jpg │ ├── grid-small.jpg │ ├── iOS-Simulator.png │ ├── isometric-view.jpg │ ├── isometric.jpg │ ├── lights-ambient.jpg │ ├── lights-attenuation.jpg │ ├── lights-attenuation2.jpg │ ├── lights-attenuation3.jpg │ ├── lights-directional.jpg │ ├── lights-pointlight-01.jpg │ ├── lights-pointlight-02.jpg │ ├── lights-pointlight.jpg │ ├── lights-radius.jpg │ ├── lights-radius2.jpg │ ├── lights-spotlight.jpg │ ├── materials.png │ ├── normals.png │ ├── perspective-view.jpg │ ├── perspective.jpg │ ├── planar.jpg │ ├── planar.png │ ├── refill_map.png │ ├── repo-files.png │ ├── rock-small.jpg │ ├── sem.jpg │ ├── shader.jpg │ ├── shaders-color.jpg │ ├── shaders-filter.jpg │ ├── shaders-normal.jpg │ ├── shaders-position.gif │ ├── shininess.png │ ├── simple-demo-initial.png │ ├── simple-demo-mod-light.png │ ├── simple-demo-new-light.png │ ├── specular-surface.png │ ├── specular.png │ ├── spheremap.png │ ├── texture-00.png │ ├── texture-01.png │ ├── texture-02.png │ ├── texture-03.png │ ├── texture-04.png │ ├── texture-ambient.png │ ├── texture-diffuse.png │ ├── texture-emission.png │ ├── texture-none.png │ ├── texture-normal.png │ ├── texture-specular.png │ ├── triplanar.jpg │ ├── triplanar.png │ ├── uv-coords.png │ ├── uv-grid.png │ ├── uv.jpg │ ├── uv.png │ ├── zoom-view.jpg │ └── zoom.jpg └── index.md ├── lights ├── ambient.yaml ├── directional.yaml ├── lights.frag ├── pointlight-00.yaml ├── pointlight-01.yaml ├── pointlight-02.yaml ├── pointlight-attenuation-00.yaml ├── pointlight-attenuation-01.yaml ├── pointlight-attenuation-02.yaml ├── pointlight-radius-00.yaml ├── pointlight-radius-01.yaml └── spotlight.yaml ├── material ├── dynamic-normals.yaml ├── earth.ai ├── earth.frag ├── grass.jpg ├── grass01.jpg ├── grid.jpg ├── material.frag ├── materials.ai ├── materials.yaml ├── normals.yaml ├── planar.yaml ├── road.jpg ├── rock.jpg ├── sem.jpg ├── sky.jpg ├── spheremap.yaml ├── triplanar.yaml ├── uv-grid.png └── uv.yaml ├── mkdocs.yml ├── procedural └── tronish.yaml ├── scene.yaml ├── shaders ├── color.yaml ├── default-pipeline.ai ├── filter.yaml ├── normal.yaml └── position.yaml ├── src ├── leaflet-hash.js ├── main.js ├── marked.js ├── tangram.min.js └── tutorial-embeds.js └── tutorials ├── custom ├── custom-styles.jpg ├── custom1.jpg ├── custom1.yaml ├── custom10.yaml ├── custom11.jpg ├── custom11.yaml ├── custom12.jpg ├── custom12.yaml ├── custom13.yaml ├── custom2.yaml ├── custom3.jpg ├── custom3.yaml ├── custom4.jpg ├── custom4.yaml ├── custom5.jpg ├── custom5.yaml ├── custom6.jpg ├── custom6.yaml ├── custom7.yaml ├── custom8.yaml ├── custom9.jpg ├── custom9.yaml └── fade.gif ├── editing-basemaps ├── editing-basemaps1.jpg ├── editing-basemaps1.yaml ├── editing-basemaps2.jpg ├── editing-basemaps2.yaml ├── editing-basemaps3.jpg ├── editing-basemaps3.yaml ├── editing-basemaps4.jpg ├── editing-basemaps4.yaml ├── shape.geojson └── simple-basemap.yaml └── loading.gif /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/README.md -------------------------------------------------------------------------------- /cameras/axis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/cameras/axis.yaml -------------------------------------------------------------------------------- /cameras/flat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/cameras/flat.yaml -------------------------------------------------------------------------------- /cameras/focal_length.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/cameras/focal_length.yaml -------------------------------------------------------------------------------- /cameras/isometric.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/cameras/isometric.yaml -------------------------------------------------------------------------------- /cameras/perspective.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/cameras/perspective.yaml -------------------------------------------------------------------------------- /cameras/vanishing_point.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/cameras/vanishing_point.yaml -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/circle.yml -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/css/style.css -------------------------------------------------------------------------------- /css/tutorial-embeds.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/css/tutorial-embeds.css -------------------------------------------------------------------------------- /docs/API-Reference/Android-API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/Android-API.md -------------------------------------------------------------------------------- /docs/API-Reference/Javascript-API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/Javascript-API.md -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.10.0/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.10.0/allclasses-frame.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.10.0/allclasses-noframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.10.0/allclasses-noframe.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.10.0/com/mapzen/tangram/CameraUpdate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.10.0/com/mapzen/tangram/CameraUpdate.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.10.0/com/mapzen/tangram/LngLat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.10.0/com/mapzen/tangram/LngLat.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.10.0/com/mapzen/tangram/MapController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.10.0/com/mapzen/tangram/MapController.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.10.0/com/mapzen/tangram/MapData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.10.0/com/mapzen/tangram/MapData.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.10.0/com/mapzen/tangram/MapView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.10.0/com/mapzen/tangram/MapView.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.10.0/com/mapzen/tangram/Marker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.10.0/com/mapzen/tangram/Marker.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.10.0/com/mapzen/tangram/SceneError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.10.0/com/mapzen/tangram/SceneError.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.10.0/com/mapzen/tangram/SceneUpdate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.10.0/com/mapzen/tangram/SceneUpdate.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.10.0/com/mapzen/tangram/TouchInput.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.10.0/com/mapzen/tangram/TouchInput.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.10.0/com/mapzen/tangram/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.10.0/com/mapzen/tangram/package-frame.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.10.0/com/mapzen/tangram/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.10.0/com/mapzen/tangram/package-tree.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.10.0/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.10.0/constant-values.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.10.0/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.10.0/deprecated-list.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.10.0/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.10.0/help-doc.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.10.0/index-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.10.0/index-all.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.10.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.10.0/index.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.10.0/overview-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.10.0/overview-frame.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.10.0/overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.10.0/overview-summary.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.10.0/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.10.0/overview-tree.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.10.0/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.10.0/package-list -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.10.0/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.10.0/script.js -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.10.0/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.10.0/stylesheet.css -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.11.0/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.11.0/allclasses-frame.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.11.0/allclasses-noframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.11.0/allclasses-noframe.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.11.0/com/mapzen/tangram/CameraUpdate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.11.0/com/mapzen/tangram/CameraUpdate.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.11.0/com/mapzen/tangram/LngLat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.11.0/com/mapzen/tangram/LngLat.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.11.0/com/mapzen/tangram/MapController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.11.0/com/mapzen/tangram/MapController.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.11.0/com/mapzen/tangram/MapData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.11.0/com/mapzen/tangram/MapData.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.11.0/com/mapzen/tangram/MapView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.11.0/com/mapzen/tangram/MapView.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.11.0/com/mapzen/tangram/Marker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.11.0/com/mapzen/tangram/Marker.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.11.0/com/mapzen/tangram/SceneError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.11.0/com/mapzen/tangram/SceneError.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.11.0/com/mapzen/tangram/SceneUpdate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.11.0/com/mapzen/tangram/SceneUpdate.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.11.0/com/mapzen/tangram/TouchInput.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.11.0/com/mapzen/tangram/TouchInput.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.11.0/com/mapzen/tangram/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.11.0/com/mapzen/tangram/package-frame.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.11.0/com/mapzen/tangram/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.11.0/com/mapzen/tangram/package-tree.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.11.0/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.11.0/constant-values.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.11.0/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.11.0/deprecated-list.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.11.0/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.11.0/help-doc.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.11.0/index-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.11.0/index-all.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.11.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.11.0/index.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.11.0/overview-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.11.0/overview-frame.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.11.0/overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.11.0/overview-summary.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.11.0/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.11.0/overview-tree.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.11.0/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.11.0/package-list -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.11.0/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.11.0/script.js -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.11.0/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.11.0/stylesheet.css -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2.1/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2.1/allclasses-frame.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2.1/allclasses-noframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2.1/allclasses-noframe.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2.1/com/mapzen/tangram/ConfigChooser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2.1/com/mapzen/tangram/ConfigChooser.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2.1/com/mapzen/tangram/HttpHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2.1/com/mapzen/tangram/HttpHandler.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2.1/com/mapzen/tangram/LngLat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2.1/com/mapzen/tangram/LngLat.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2.1/com/mapzen/tangram/MapController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2.1/com/mapzen/tangram/MapController.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2.1/com/mapzen/tangram/MapData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2.1/com/mapzen/tangram/MapData.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2.1/com/mapzen/tangram/MapView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2.1/com/mapzen/tangram/MapView.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2.1/com/mapzen/tangram/TouchInput.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2.1/com/mapzen/tangram/TouchInput.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2.1/com/mapzen/tangram/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2.1/com/mapzen/tangram/package-frame.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2.1/com/mapzen/tangram/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2.1/com/mapzen/tangram/package-tree.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2.1/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2.1/constant-values.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2.1/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2.1/deprecated-list.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2.1/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2.1/help-doc.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2.1/index-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2.1/index-all.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2.1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2.1/index.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2.1/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2.1/overview-tree.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2.1/package-list: -------------------------------------------------------------------------------- 1 | com.mapzen.tangram 2 | -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2.1/resources/background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2.1/resources/background.gif -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2.1/resources/tab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2.1/resources/tab.gif -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2.1/resources/titlebar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2.1/resources/titlebar.gif -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2.1/resources/titlebar_end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2.1/resources/titlebar_end.gif -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2.1/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2.1/stylesheet.css -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2/allclasses-frame.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2/allclasses-noframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2/allclasses-noframe.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2/com/mapzen/tangram/ConfigChooser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2/com/mapzen/tangram/ConfigChooser.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2/com/mapzen/tangram/HttpHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2/com/mapzen/tangram/HttpHandler.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2/com/mapzen/tangram/LngLat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2/com/mapzen/tangram/LngLat.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2/com/mapzen/tangram/MapController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2/com/mapzen/tangram/MapController.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2/com/mapzen/tangram/MapData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2/com/mapzen/tangram/MapData.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2/com/mapzen/tangram/MapView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2/com/mapzen/tangram/MapView.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2/com/mapzen/tangram/TouchInput.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2/com/mapzen/tangram/TouchInput.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2/com/mapzen/tangram/geometry/Point.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2/com/mapzen/tangram/geometry/Point.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2/com/mapzen/tangram/geometry/Polygon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2/com/mapzen/tangram/geometry/Polygon.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2/com/mapzen/tangram/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2/com/mapzen/tangram/package-frame.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2/com/mapzen/tangram/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2/com/mapzen/tangram/package-summary.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2/com/mapzen/tangram/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2/com/mapzen/tangram/package-tree.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2/constant-values.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2/deprecated-list.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2/help-doc.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2/index-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2/index-all.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2/index.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2/overview-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2/overview-frame.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2/overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2/overview-summary.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2/overview-tree.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2/package-list: -------------------------------------------------------------------------------- 1 | com.mapzen.tangram 2 | -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2/resources/background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2/resources/background.gif -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2/resources/tab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2/resources/tab.gif -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2/resources/titlebar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2/resources/titlebar.gif -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2/resources/titlebar_end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2/resources/titlebar_end.gif -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.2/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.2/stylesheet.css -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4.9/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4.9/allclasses-frame.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4.9/allclasses-noframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4.9/allclasses-noframe.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4.9/com/mapzen/tangram/ConfigChooser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4.9/com/mapzen/tangram/ConfigChooser.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4.9/com/mapzen/tangram/HttpHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4.9/com/mapzen/tangram/HttpHandler.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4.9/com/mapzen/tangram/LngLat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4.9/com/mapzen/tangram/LngLat.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4.9/com/mapzen/tangram/MapController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4.9/com/mapzen/tangram/MapController.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4.9/com/mapzen/tangram/MapData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4.9/com/mapzen/tangram/MapData.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4.9/com/mapzen/tangram/MapView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4.9/com/mapzen/tangram/MapView.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4.9/com/mapzen/tangram/Marker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4.9/com/mapzen/tangram/Marker.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4.9/com/mapzen/tangram/SceneUpdate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4.9/com/mapzen/tangram/SceneUpdate.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4.9/com/mapzen/tangram/TouchInput.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4.9/com/mapzen/tangram/TouchInput.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4.9/com/mapzen/tangram/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4.9/com/mapzen/tangram/package-frame.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4.9/com/mapzen/tangram/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4.9/com/mapzen/tangram/package-tree.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4.9/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4.9/constant-values.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4.9/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4.9/deprecated-list.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4.9/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4.9/help-doc.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4.9/index-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4.9/index-all.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4.9/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4.9/index.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4.9/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4.9/overview-tree.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4.9/package-list: -------------------------------------------------------------------------------- 1 | com.mapzen.tangram 2 | -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4.9/resources/background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4.9/resources/background.gif -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4.9/resources/tab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4.9/resources/tab.gif -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4.9/resources/titlebar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4.9/resources/titlebar.gif -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4.9/resources/titlebar_end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4.9/resources/titlebar_end.gif -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4.9/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4.9/stylesheet.css -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4/allclasses-frame.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4/allclasses-noframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4/allclasses-noframe.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4/com/mapzen/tangram/ConfigChooser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4/com/mapzen/tangram/ConfigChooser.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4/com/mapzen/tangram/HttpHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4/com/mapzen/tangram/HttpHandler.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4/com/mapzen/tangram/LngLat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4/com/mapzen/tangram/LngLat.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4/com/mapzen/tangram/MapController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4/com/mapzen/tangram/MapController.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4/com/mapzen/tangram/MapData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4/com/mapzen/tangram/MapData.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4/com/mapzen/tangram/MapView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4/com/mapzen/tangram/MapView.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4/com/mapzen/tangram/TouchInput.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4/com/mapzen/tangram/TouchInput.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4/com/mapzen/tangram/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4/com/mapzen/tangram/package-frame.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4/com/mapzen/tangram/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4/com/mapzen/tangram/package-summary.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4/com/mapzen/tangram/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4/com/mapzen/tangram/package-tree.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4/constant-values.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4/deprecated-list.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4/help-doc.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4/index-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4/index-all.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4/index.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4/overview-tree.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4/package-list: -------------------------------------------------------------------------------- 1 | com.mapzen.tangram 2 | -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4/resources/background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4/resources/background.gif -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4/resources/tab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4/resources/tab.gif -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4/resources/titlebar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4/resources/titlebar.gif -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4/resources/titlebar_end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4/resources/titlebar_end.gif -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.4/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.4/stylesheet.css -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.0/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.0/allclasses-frame.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.0/allclasses-noframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.0/allclasses-noframe.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.0/com/mapzen/tangram/HttpHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.0/com/mapzen/tangram/HttpHandler.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.0/com/mapzen/tangram/LngLat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.0/com/mapzen/tangram/LngLat.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.0/com/mapzen/tangram/MapData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.0/com/mapzen/tangram/MapData.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.0/com/mapzen/tangram/MapView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.0/com/mapzen/tangram/MapView.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.0/com/mapzen/tangram/Marker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.0/com/mapzen/tangram/Marker.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.0/com/mapzen/tangram/SceneUpdate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.0/com/mapzen/tangram/SceneUpdate.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.0/com/mapzen/tangram/TouchInput.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.0/com/mapzen/tangram/TouchInput.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.0/com/mapzen/tangram/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.0/com/mapzen/tangram/package-tree.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.0/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.0/constant-values.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.0/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.0/deprecated-list.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.0/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.0/help-doc.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.0/index-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.0/index-all.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.0/index.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.0/overview-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.0/overview-frame.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.0/overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.0/overview-summary.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.0/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.0/overview-tree.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.0/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.0/package-list -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.0/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.0/script.js -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.0/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.0/stylesheet.css -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.1/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.1/allclasses-frame.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.1/allclasses-noframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.1/allclasses-noframe.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.1/com/mapzen/tangram/HttpHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.1/com/mapzen/tangram/HttpHandler.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.1/com/mapzen/tangram/LngLat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.1/com/mapzen/tangram/LngLat.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.1/com/mapzen/tangram/MapData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.1/com/mapzen/tangram/MapData.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.1/com/mapzen/tangram/MapView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.1/com/mapzen/tangram/MapView.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.1/com/mapzen/tangram/Marker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.1/com/mapzen/tangram/Marker.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.1/com/mapzen/tangram/SceneUpdate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.1/com/mapzen/tangram/SceneUpdate.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.1/com/mapzen/tangram/TouchInput.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.1/com/mapzen/tangram/TouchInput.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.1/com/mapzen/tangram/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.1/com/mapzen/tangram/package-tree.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.1/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.1/constant-values.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.1/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.1/deprecated-list.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.1/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.1/help-doc.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.1/index-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.1/index-all.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.1/index.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.1/overview-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.1/overview-frame.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.1/overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.1/overview-summary.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.1/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.1/overview-tree.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.1/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.1/package-list -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.1/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.1/script.js -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.5.1/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.5.1/stylesheet.css -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.6.1/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.6.1/allclasses-frame.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.6.1/allclasses-noframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.6.1/allclasses-noframe.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.6.1/com/mapzen/tangram/HttpHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.6.1/com/mapzen/tangram/HttpHandler.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.6.1/com/mapzen/tangram/LngLat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.6.1/com/mapzen/tangram/LngLat.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.6.1/com/mapzen/tangram/MapData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.6.1/com/mapzen/tangram/MapData.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.6.1/com/mapzen/tangram/MapView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.6.1/com/mapzen/tangram/MapView.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.6.1/com/mapzen/tangram/Marker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.6.1/com/mapzen/tangram/Marker.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.6.1/com/mapzen/tangram/SceneUpdate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.6.1/com/mapzen/tangram/SceneUpdate.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.6.1/com/mapzen/tangram/TouchInput.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.6.1/com/mapzen/tangram/TouchInput.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.6.1/com/mapzen/tangram/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.6.1/com/mapzen/tangram/package-tree.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.6.1/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.6.1/constant-values.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.6.1/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.6.1/deprecated-list.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.6.1/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.6.1/help-doc.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.6.1/index-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.6.1/index-all.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.6.1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.6.1/index.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.6.1/overview-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.6.1/overview-frame.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.6.1/overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.6.1/overview-summary.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.6.1/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.6.1/overview-tree.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.6.1/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.6.1/package-list -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.6.1/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.6.1/script.js -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.6.1/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.6.1/stylesheet.css -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.7.0/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.7.0/allclasses-frame.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.7.0/allclasses-noframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.7.0/allclasses-noframe.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.7.0/com/mapzen/tangram/HttpHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.7.0/com/mapzen/tangram/HttpHandler.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.7.0/com/mapzen/tangram/LngLat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.7.0/com/mapzen/tangram/LngLat.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.7.0/com/mapzen/tangram/MapData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.7.0/com/mapzen/tangram/MapData.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.7.0/com/mapzen/tangram/MapView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.7.0/com/mapzen/tangram/MapView.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.7.0/com/mapzen/tangram/Marker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.7.0/com/mapzen/tangram/Marker.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.7.0/com/mapzen/tangram/SceneUpdate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.7.0/com/mapzen/tangram/SceneUpdate.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.7.0/com/mapzen/tangram/TouchInput.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.7.0/com/mapzen/tangram/TouchInput.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.7.0/com/mapzen/tangram/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.7.0/com/mapzen/tangram/package-tree.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.7.0/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.7.0/constant-values.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.7.0/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.7.0/deprecated-list.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.7.0/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.7.0/help-doc.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.7.0/index-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.7.0/index-all.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.7.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.7.0/index.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.7.0/overview-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.7.0/overview-frame.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.7.0/overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.7.0/overview-summary.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.7.0/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.7.0/overview-tree.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.7.0/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.7.0/package-list -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.7.0/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.7.0/script.js -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.7.0/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.7.0/stylesheet.css -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.9.0/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.9.0/allclasses-frame.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.9.0/allclasses-noframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.9.0/allclasses-noframe.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.9.0/com/mapzen/tangram/CachePolicy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.9.0/com/mapzen/tangram/CachePolicy.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.9.0/com/mapzen/tangram/HttpHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.9.0/com/mapzen/tangram/HttpHandler.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.9.0/com/mapzen/tangram/LngLat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.9.0/com/mapzen/tangram/LngLat.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.9.0/com/mapzen/tangram/MapData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.9.0/com/mapzen/tangram/MapData.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.9.0/com/mapzen/tangram/MapView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.9.0/com/mapzen/tangram/MapView.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.9.0/com/mapzen/tangram/Marker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.9.0/com/mapzen/tangram/Marker.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.9.0/com/mapzen/tangram/SceneError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.9.0/com/mapzen/tangram/SceneError.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.9.0/com/mapzen/tangram/SceneUpdate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.9.0/com/mapzen/tangram/SceneUpdate.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.9.0/com/mapzen/tangram/TouchInput.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.9.0/com/mapzen/tangram/TouchInput.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.9.0/com/mapzen/tangram/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.9.0/com/mapzen/tangram/package-tree.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.9.0/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.9.0/constant-values.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.9.0/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.9.0/deprecated-list.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.9.0/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.9.0/help-doc.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.9.0/index-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.9.0/index-all.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.9.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.9.0/index.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.9.0/overview-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.9.0/overview-frame.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.9.0/overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.9.0/overview-summary.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.9.0/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.9.0/overview-tree.html -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.9.0/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.9.0/package-list -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.9.0/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.9.0/script.js -------------------------------------------------------------------------------- /docs/API-Reference/android-sdk/0.9.0/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/android-sdk/0.9.0/stylesheet.css -------------------------------------------------------------------------------- /docs/API-Reference/iOS-API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/iOS-API.md -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/Classes.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/Classes/TGCameraPosition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/Classes/TGCameraPosition.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/Classes/TGDefaultURLHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/Classes/TGDefaultURLHandler.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/Classes/TGGeoPolygon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/Classes/TGGeoPolygon.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/Classes/TGGeoPolyline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/Classes/TGGeoPolyline.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/Classes/TGLabelPickResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/Classes/TGLabelPickResult.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/Classes/TGMapData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/Classes/TGMapData.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/Classes/TGMapView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/Classes/TGMapView.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/Classes/TGMarker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/Classes/TGMarker.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/Classes/TGMarkerPickResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/Classes/TGMarkerPickResult.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/Classes/TGSceneUpdate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/Classes/TGSceneUpdate.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/Constants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/Constants.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/Enums.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/Enums/TGCameraType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/Enums/TGCameraType.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/Enums/TGDebugFlag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/Enums/TGDebugFlag.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/Enums/TGEaseType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/Enums/TGEaseType.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/Enums/TGError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/Enums/TGError.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/Enums/TGLabelType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/Enums/TGLabelType.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/Functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/Functions.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/Protocols.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/Protocols/TGMapViewDelegate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/Protocols/TGMapViewDelegate.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/Protocols/TGURLHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/Protocols/TGURLHandler.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/Structs.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/Structs/TGCoordinateBounds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/Structs/TGCoordinateBounds.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/Type Definitions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/Type Definitions.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/badge.svg -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/css/highlight.css -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/css/jazzy.css -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/docsets/Tangram iOS SDK.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/docsets/Tangram iOS SDK.tgz -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/img/carat.png -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/img/dash.png -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/img/gh.png -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/img/spinner.gif -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/index.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/js/jazzy.js -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/js/jquery.min.js -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/js/lunr.min.js -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/search.json -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.10.0/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.10.0/undocumented.json -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/Classes.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/Classes/TGCameraPosition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/Classes/TGCameraPosition.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/Classes/TGDefaultURLHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/Classes/TGDefaultURLHandler.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/Classes/TGGeoPolygon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/Classes/TGGeoPolygon.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/Classes/TGGeoPolyline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/Classes/TGGeoPolyline.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/Classes/TGLabelPickResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/Classes/TGLabelPickResult.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/Classes/TGMapData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/Classes/TGMapData.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/Classes/TGMapFeature.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/Classes/TGMapFeature.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/Classes/TGMapView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/Classes/TGMapView.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/Classes/TGMarker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/Classes/TGMarker.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/Classes/TGMarkerPickResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/Classes/TGMarkerPickResult.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/Classes/TGSceneUpdate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/Classes/TGSceneUpdate.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/Constants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/Constants.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/Enums.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/Enums/TGCameraType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/Enums/TGCameraType.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/Enums/TGDebugFlag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/Enums/TGDebugFlag.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/Enums/TGEaseType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/Enums/TGEaseType.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/Enums/TGError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/Enums/TGError.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/Enums/TGLabelType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/Enums/TGLabelType.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/Functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/Functions.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/Protocols.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/Protocols/TGMapViewDelegate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/Protocols/TGMapViewDelegate.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/Protocols/TGURLHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/Protocols/TGURLHandler.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/Structs.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/Structs/TGCoordinateBounds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/Structs/TGCoordinateBounds.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/Type Definitions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/Type Definitions.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/badge.svg -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/css/highlight.css -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/css/jazzy.css -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/docsets/Tangram iOS SDK.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/docsets/Tangram iOS SDK.tgz -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/img/carat.png -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/img/dash.png -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/img/gh.png -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/img/spinner.gif -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/index.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/js/jazzy.js -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/js/jquery.min.js -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/js/lunr.min.js -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/search.json -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.11.0/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.11.0/undocumented.json -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.0/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.0/Classes.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.0/Classes/TGGeoPolygon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.0/Classes/TGGeoPolygon.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.0/Classes/TGGeoPolyline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.0/Classes/TGGeoPolyline.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.0/Classes/TGHttpHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.0/Classes/TGHttpHandler.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.0/Classes/TGLabelPickResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.0/Classes/TGLabelPickResult.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.0/Classes/TGMapViewController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.0/Classes/TGMapViewController.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.0/Classes/TGMarkerPickResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.0/Classes/TGMarkerPickResult.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.0/Classes/TGSceneUpdate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.0/Classes/TGSceneUpdate.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.0/Constants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.0/Constants.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.0/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.0/Enums.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.0/Enums/TGCameraType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.0/Enums/TGCameraType.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.0/Enums/TGDebugFlag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.0/Enums/TGDebugFlag.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.0/Enums/TGEaseType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.0/Enums/TGEaseType.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.0/Enums/TGLabelType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.0/Enums/TGLabelType.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.0/Functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.0/Functions.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.0/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.0/Protocols.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.0/Protocols/TGMapViewDelegate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.0/Protocols/TGMapViewDelegate.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.0/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.0/Structs.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.0/Structs/TGGeoPoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.0/Structs/TGGeoPoint.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.0/Type Definitions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.0/Type Definitions.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.0/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.0/css/highlight.css -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.0/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.0/css/jazzy.css -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.0/docsets/Mapzen.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.0/docsets/Mapzen.tgz -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.0/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.0/img/carat.png -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.0/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.0/img/dash.png -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.0/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.0/img/gh.png -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.0/index.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.0/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.0/js/jazzy.js -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.0/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.0/js/jquery.min.js -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.0/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.0/undocumented.json -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.1/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.1/Classes.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.1/Classes/TGGeoPolygon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.1/Classes/TGGeoPolygon.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.1/Classes/TGGeoPolyline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.1/Classes/TGGeoPolyline.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.1/Classes/TGHttpHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.1/Classes/TGHttpHandler.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.1/Classes/TGLabelPickResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.1/Classes/TGLabelPickResult.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.1/Classes/TGMapData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.1/Classes/TGMapData.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.1/Classes/TGMapViewController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.1/Classes/TGMapViewController.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.1/Classes/TGMarker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.1/Classes/TGMarker.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.1/Classes/TGMarkerPickResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.1/Classes/TGMarkerPickResult.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.1/Classes/TGSceneUpdate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.1/Classes/TGSceneUpdate.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.1/Constants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.1/Constants.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.1/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.1/Enums.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.1/Enums/TGCameraType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.1/Enums/TGCameraType.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.1/Enums/TGDebugFlag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.1/Enums/TGDebugFlag.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.1/Enums/TGEaseType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.1/Enums/TGEaseType.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.1/Enums/TGLabelType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.1/Enums/TGLabelType.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.1/Functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.1/Functions.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.1/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.1/Protocols.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.1/Protocols/TGMapViewDelegate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.1/Protocols/TGMapViewDelegate.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.1/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.1/Structs.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.1/Structs/TGGeoPoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.1/Structs/TGGeoPoint.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.1/Type Definitions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.1/Type Definitions.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.1/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.1/css/highlight.css -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.1/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.1/css/jazzy.css -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.1/docsets/Mapzen.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.1/docsets/Mapzen.tgz -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.1/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.1/img/carat.png -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.1/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.1/img/dash.png -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.1/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.1/img/gh.png -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.1/index.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.1/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.1/js/jazzy.js -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.1/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.1/js/jquery.min.js -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.5.1/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.5.1/undocumented.json -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.0/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.0/Classes.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.0/Classes/TGGeoPolygon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.0/Classes/TGGeoPolygon.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.0/Classes/TGGeoPolyline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.0/Classes/TGGeoPolyline.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.0/Classes/TGHttpHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.0/Classes/TGHttpHandler.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.0/Classes/TGLabelPickResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.0/Classes/TGLabelPickResult.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.0/Classes/TGMapData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.0/Classes/TGMapData.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.0/Classes/TGMapViewController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.0/Classes/TGMapViewController.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.0/Classes/TGMarker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.0/Classes/TGMarker.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.0/Classes/TGMarkerPickResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.0/Classes/TGMarkerPickResult.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.0/Classes/TGSceneUpdate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.0/Classes/TGSceneUpdate.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.0/Constants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.0/Constants.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.0/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.0/Enums.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.0/Enums/TGCameraType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.0/Enums/TGCameraType.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.0/Enums/TGDebugFlag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.0/Enums/TGDebugFlag.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.0/Enums/TGEaseType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.0/Enums/TGEaseType.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.0/Enums/TGError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.0/Enums/TGError.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.0/Enums/TGLabelType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.0/Enums/TGLabelType.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.0/Functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.0/Functions.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.0/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.0/Protocols.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.0/Protocols/TGMapViewDelegate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.0/Protocols/TGMapViewDelegate.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.0/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.0/Structs.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.0/Structs/TGGeoPoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.0/Structs/TGGeoPoint.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.0/Type Definitions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.0/Type Definitions.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.0/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.0/css/highlight.css -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.0/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.0/css/jazzy.css -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.0/docsets/Mapzen.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.0/docsets/Mapzen.tgz -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.0/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.0/img/carat.png -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.0/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.0/img/dash.png -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.0/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.0/img/gh.png -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.0/index.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.0/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.0/js/jazzy.js -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.0/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.0/js/jquery.min.js -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.0/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.0/undocumented.json -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.1/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.1/Classes.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.1/Classes/TGGeoPolygon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.1/Classes/TGGeoPolygon.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.1/Classes/TGGeoPolyline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.1/Classes/TGGeoPolyline.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.1/Classes/TGHttpHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.1/Classes/TGHttpHandler.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.1/Classes/TGLabelPickResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.1/Classes/TGLabelPickResult.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.1/Classes/TGMapData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.1/Classes/TGMapData.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.1/Classes/TGMapViewController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.1/Classes/TGMapViewController.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.1/Classes/TGMarker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.1/Classes/TGMarker.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.1/Classes/TGMarkerPickResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.1/Classes/TGMarkerPickResult.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.1/Classes/TGSceneUpdate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.1/Classes/TGSceneUpdate.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.1/Constants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.1/Constants.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.1/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.1/Enums.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.1/Enums/TGCameraType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.1/Enums/TGCameraType.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.1/Enums/TGDebugFlag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.1/Enums/TGDebugFlag.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.1/Enums/TGEaseType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.1/Enums/TGEaseType.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.1/Enums/TGError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.1/Enums/TGError.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.1/Enums/TGLabelType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.1/Enums/TGLabelType.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.1/Functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.1/Functions.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.1/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.1/Protocols.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.1/Protocols/TGMapViewDelegate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.1/Protocols/TGMapViewDelegate.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.1/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.1/Structs.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.1/Structs/TGGeoPoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.1/Structs/TGGeoPoint.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.1/Type Definitions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.1/Type Definitions.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.1/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.1/css/highlight.css -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.1/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.1/css/jazzy.css -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.1/docsets/Mapzen.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.1/docsets/Mapzen.tgz -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.1/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.1/img/carat.png -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.1/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.1/img/dash.png -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.1/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.1/img/gh.png -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.1/index.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.1/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.1/js/jazzy.js -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.1/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.1/js/jquery.min.js -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.6.1/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.6.1/undocumented.json -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/Classes.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/Classes/TGGeoPolygon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/Classes/TGGeoPolygon.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/Classes/TGGeoPolyline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/Classes/TGGeoPolyline.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/Classes/TGHttpHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/Classes/TGHttpHandler.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/Classes/TGLabelPickResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/Classes/TGLabelPickResult.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/Classes/TGMapData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/Classes/TGMapData.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/Classes/TGMapViewController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/Classes/TGMapViewController.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/Classes/TGMarker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/Classes/TGMarker.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/Classes/TGMarkerPickResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/Classes/TGMarkerPickResult.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/Classes/TGSceneUpdate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/Classes/TGSceneUpdate.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/Constants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/Constants.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/Enums.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/Enums/TGCameraType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/Enums/TGCameraType.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/Enums/TGDebugFlag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/Enums/TGDebugFlag.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/Enums/TGEaseType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/Enums/TGEaseType.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/Enums/TGError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/Enums/TGError.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/Enums/TGLabelType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/Enums/TGLabelType.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/Functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/Functions.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/Protocols.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/Protocols/TGMapViewDelegate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/Protocols/TGMapViewDelegate.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/Structs.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/Structs/TGGeoPoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/Structs/TGGeoPoint.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/Type Definitions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/Type Definitions.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/badge.svg -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/css/highlight.css -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/css/jazzy.css -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/docsets/Mapzen.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/docsets/Mapzen.tgz -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/img/carat.png -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/img/dash.png -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/img/gh.png -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/img/spinner.gif -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/index.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/js/jazzy.js -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/js/jquery.min.js -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/js/lunr.min.js -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/search.json -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.7.0/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.7.0/undocumented.json -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/Classes.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/Classes/TGGeoPolygon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/Classes/TGGeoPolygon.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/Classes/TGGeoPolyline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/Classes/TGGeoPolyline.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/Classes/TGHttpHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/Classes/TGHttpHandler.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/Classes/TGLabelPickResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/Classes/TGLabelPickResult.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/Classes/TGMapData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/Classes/TGMapData.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/Classes/TGMapViewController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/Classes/TGMapViewController.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/Classes/TGMarker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/Classes/TGMarker.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/Classes/TGMarkerPickResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/Classes/TGMarkerPickResult.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/Classes/TGSceneUpdate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/Classes/TGSceneUpdate.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/Constants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/Constants.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/Enums.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/Enums/TGCameraType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/Enums/TGCameraType.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/Enums/TGDebugFlag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/Enums/TGDebugFlag.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/Enums/TGEaseType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/Enums/TGEaseType.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/Enums/TGError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/Enums/TGError.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/Enums/TGLabelType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/Enums/TGLabelType.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/Functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/Functions.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/Protocols.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/Protocols/TGMapViewDelegate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/Protocols/TGMapViewDelegate.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/Structs.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/Structs/TGGeoPoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/Structs/TGGeoPoint.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/Type Definitions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/Type Definitions.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/badge.svg -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/css/highlight.css -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/css/jazzy.css -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/docsets/Mapzen.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/docsets/Mapzen.tgz -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/img/carat.png -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/img/dash.png -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/img/gh.png -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/img/spinner.gif -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/index.html -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/js/jazzy.js -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/js/jquery.min.js -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/js/lunr.min.js -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/search.json -------------------------------------------------------------------------------- /docs/API-Reference/ios-framework/0.9.0/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/API-Reference/ios-framework/0.9.0/undocumented.json -------------------------------------------------------------------------------- /docs/Overviews/Bundling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/Overviews/Bundling.md -------------------------------------------------------------------------------- /docs/Overviews/Cameras-Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/Overviews/Cameras-Overview.md -------------------------------------------------------------------------------- /docs/Overviews/Filters-Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/Overviews/Filters-Overview.md -------------------------------------------------------------------------------- /docs/Overviews/Lights-Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/Overviews/Lights-Overview.md -------------------------------------------------------------------------------- /docs/Overviews/Materials-Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/Overviews/Materials-Overview.md -------------------------------------------------------------------------------- /docs/Overviews/Projections-Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/Overviews/Projections-Overview.md -------------------------------------------------------------------------------- /docs/Overviews/Raster-Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/Overviews/Raster-Overview.md -------------------------------------------------------------------------------- /docs/Overviews/Scene-File.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/Overviews/Scene-File.md -------------------------------------------------------------------------------- /docs/Overviews/Shaders-Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/Overviews/Shaders-Overview.md -------------------------------------------------------------------------------- /docs/Overviews/Styles-Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/Overviews/Styles-Overview.md -------------------------------------------------------------------------------- /docs/Overviews/Tangram-Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/Overviews/Tangram-Overview.md -------------------------------------------------------------------------------- /docs/Syntax-Reference/cameras.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/Syntax-Reference/cameras.md -------------------------------------------------------------------------------- /docs/Syntax-Reference/draw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/Syntax-Reference/draw.md -------------------------------------------------------------------------------- /docs/Syntax-Reference/fonts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/Syntax-Reference/fonts.md -------------------------------------------------------------------------------- /docs/Syntax-Reference/global.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/Syntax-Reference/global.md -------------------------------------------------------------------------------- /docs/Syntax-Reference/import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/Syntax-Reference/import.md -------------------------------------------------------------------------------- /docs/Syntax-Reference/layers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/Syntax-Reference/layers.md -------------------------------------------------------------------------------- /docs/Syntax-Reference/lights.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/Syntax-Reference/lights.md -------------------------------------------------------------------------------- /docs/Syntax-Reference/materials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/Syntax-Reference/materials.md -------------------------------------------------------------------------------- /docs/Syntax-Reference/scene.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/Syntax-Reference/scene.md -------------------------------------------------------------------------------- /docs/Syntax-Reference/shaders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/Syntax-Reference/shaders.md -------------------------------------------------------------------------------- /docs/Syntax-Reference/sources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/Syntax-Reference/sources.md -------------------------------------------------------------------------------- /docs/Syntax-Reference/styles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/Syntax-Reference/styles.md -------------------------------------------------------------------------------- /docs/Syntax-Reference/textures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/Syntax-Reference/textures.md -------------------------------------------------------------------------------- /docs/Syntax-Reference/yaml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/Syntax-Reference/yaml.md -------------------------------------------------------------------------------- /docs/Tutorials/Demos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/Tutorials/Demos.md -------------------------------------------------------------------------------- /docs/Tutorials/Tangram-Setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/Tutorials/Tangram-Setup.md -------------------------------------------------------------------------------- /docs/Tutorials/android-walkthrough.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/Tutorials/android-walkthrough.md -------------------------------------------------------------------------------- /docs/Tutorials/custom-styles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/Tutorials/custom-styles.md -------------------------------------------------------------------------------- /docs/Tutorials/editing-basemaps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/Tutorials/editing-basemaps.md -------------------------------------------------------------------------------- /docs/Tutorials/iOS-walkthrough.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/Tutorials/iOS-walkthrough.md -------------------------------------------------------------------------------- /docs/Tutorials/walkthrough.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/Tutorials/walkthrough.md -------------------------------------------------------------------------------- /docs/images/002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/002.png -------------------------------------------------------------------------------- /docs/images/020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/020.png -------------------------------------------------------------------------------- /docs/images/200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/200.png -------------------------------------------------------------------------------- /docs/images/XCode-Codesign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/XCode-Codesign.png -------------------------------------------------------------------------------- /docs/images/XCode-CustomClass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/XCode-CustomClass.png -------------------------------------------------------------------------------- /docs/images/XCode-GLKView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/XCode-GLKView.png -------------------------------------------------------------------------------- /docs/images/XCode-SceneResources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/XCode-SceneResources.png -------------------------------------------------------------------------------- /docs/images/amb-dif-spe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/amb-dif-spe.png -------------------------------------------------------------------------------- /docs/images/ambient-sphere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/ambient-sphere.png -------------------------------------------------------------------------------- /docs/images/ambient-surface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/ambient-surface.png -------------------------------------------------------------------------------- /docs/images/cameras-axis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/cameras-axis.jpg -------------------------------------------------------------------------------- /docs/images/cameras-flat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/cameras-flat.jpg -------------------------------------------------------------------------------- /docs/images/cameras-focal_length.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/cameras-focal_length.jpg -------------------------------------------------------------------------------- /docs/images/cameras-isometric.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/cameras-isometric.jpg -------------------------------------------------------------------------------- /docs/images/cameras-perspective.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/cameras-perspective.jpg -------------------------------------------------------------------------------- /docs/images/cameras-vanishing_point.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/cameras-vanishing_point.jpg -------------------------------------------------------------------------------- /docs/images/change-water-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/change-water-color.png -------------------------------------------------------------------------------- /docs/images/color_wheel_730.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/color_wheel_730.png -------------------------------------------------------------------------------- /docs/images/diffuse-surface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/diffuse-surface.png -------------------------------------------------------------------------------- /docs/images/diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/diffuse.png -------------------------------------------------------------------------------- /docs/images/dynamic-normals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/dynamic-normals.png -------------------------------------------------------------------------------- /docs/images/earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/earth.png -------------------------------------------------------------------------------- /docs/images/emission-surface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/emission-surface.png -------------------------------------------------------------------------------- /docs/images/emission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/emission.png -------------------------------------------------------------------------------- /docs/images/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/example.png -------------------------------------------------------------------------------- /docs/images/flat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/flat.jpg -------------------------------------------------------------------------------- /docs/images/geometry-builder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/geometry-builder.jpg -------------------------------------------------------------------------------- /docs/images/grid-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/grid-small.jpg -------------------------------------------------------------------------------- /docs/images/iOS-Simulator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/iOS-Simulator.png -------------------------------------------------------------------------------- /docs/images/isometric-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/isometric-view.jpg -------------------------------------------------------------------------------- /docs/images/isometric.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/isometric.jpg -------------------------------------------------------------------------------- /docs/images/lights-ambient.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/lights-ambient.jpg -------------------------------------------------------------------------------- /docs/images/lights-attenuation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/lights-attenuation.jpg -------------------------------------------------------------------------------- /docs/images/lights-attenuation2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/lights-attenuation2.jpg -------------------------------------------------------------------------------- /docs/images/lights-attenuation3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/lights-attenuation3.jpg -------------------------------------------------------------------------------- /docs/images/lights-directional.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/lights-directional.jpg -------------------------------------------------------------------------------- /docs/images/lights-pointlight-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/lights-pointlight-01.jpg -------------------------------------------------------------------------------- /docs/images/lights-pointlight-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/lights-pointlight-02.jpg -------------------------------------------------------------------------------- /docs/images/lights-pointlight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/lights-pointlight.jpg -------------------------------------------------------------------------------- /docs/images/lights-radius.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/lights-radius.jpg -------------------------------------------------------------------------------- /docs/images/lights-radius2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/lights-radius2.jpg -------------------------------------------------------------------------------- /docs/images/lights-spotlight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/lights-spotlight.jpg -------------------------------------------------------------------------------- /docs/images/materials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/materials.png -------------------------------------------------------------------------------- /docs/images/normals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/normals.png -------------------------------------------------------------------------------- /docs/images/perspective-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/perspective-view.jpg -------------------------------------------------------------------------------- /docs/images/perspective.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/perspective.jpg -------------------------------------------------------------------------------- /docs/images/planar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/planar.jpg -------------------------------------------------------------------------------- /docs/images/planar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/planar.png -------------------------------------------------------------------------------- /docs/images/refill_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/refill_map.png -------------------------------------------------------------------------------- /docs/images/repo-files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/repo-files.png -------------------------------------------------------------------------------- /docs/images/rock-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/rock-small.jpg -------------------------------------------------------------------------------- /docs/images/sem.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/sem.jpg -------------------------------------------------------------------------------- /docs/images/shader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/shader.jpg -------------------------------------------------------------------------------- /docs/images/shaders-color.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/shaders-color.jpg -------------------------------------------------------------------------------- /docs/images/shaders-filter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/shaders-filter.jpg -------------------------------------------------------------------------------- /docs/images/shaders-normal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/shaders-normal.jpg -------------------------------------------------------------------------------- /docs/images/shaders-position.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/shaders-position.gif -------------------------------------------------------------------------------- /docs/images/shininess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/shininess.png -------------------------------------------------------------------------------- /docs/images/simple-demo-initial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/simple-demo-initial.png -------------------------------------------------------------------------------- /docs/images/simple-demo-mod-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/simple-demo-mod-light.png -------------------------------------------------------------------------------- /docs/images/simple-demo-new-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/simple-demo-new-light.png -------------------------------------------------------------------------------- /docs/images/specular-surface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/specular-surface.png -------------------------------------------------------------------------------- /docs/images/specular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/specular.png -------------------------------------------------------------------------------- /docs/images/spheremap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/spheremap.png -------------------------------------------------------------------------------- /docs/images/texture-00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/texture-00.png -------------------------------------------------------------------------------- /docs/images/texture-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/texture-01.png -------------------------------------------------------------------------------- /docs/images/texture-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/texture-02.png -------------------------------------------------------------------------------- /docs/images/texture-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/texture-03.png -------------------------------------------------------------------------------- /docs/images/texture-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/texture-04.png -------------------------------------------------------------------------------- /docs/images/texture-ambient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/texture-ambient.png -------------------------------------------------------------------------------- /docs/images/texture-diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/texture-diffuse.png -------------------------------------------------------------------------------- /docs/images/texture-emission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/texture-emission.png -------------------------------------------------------------------------------- /docs/images/texture-none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/texture-none.png -------------------------------------------------------------------------------- /docs/images/texture-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/texture-normal.png -------------------------------------------------------------------------------- /docs/images/texture-specular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/texture-specular.png -------------------------------------------------------------------------------- /docs/images/triplanar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/triplanar.jpg -------------------------------------------------------------------------------- /docs/images/triplanar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/triplanar.png -------------------------------------------------------------------------------- /docs/images/uv-coords.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/uv-coords.png -------------------------------------------------------------------------------- /docs/images/uv-grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/uv-grid.png -------------------------------------------------------------------------------- /docs/images/uv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/uv.jpg -------------------------------------------------------------------------------- /docs/images/uv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/uv.png -------------------------------------------------------------------------------- /docs/images/zoom-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/zoom-view.jpg -------------------------------------------------------------------------------- /docs/images/zoom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/images/zoom.jpg -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/docs/index.md -------------------------------------------------------------------------------- /lights/ambient.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/lights/ambient.yaml -------------------------------------------------------------------------------- /lights/directional.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/lights/directional.yaml -------------------------------------------------------------------------------- /lights/lights.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/lights/lights.frag -------------------------------------------------------------------------------- /lights/pointlight-00.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/lights/pointlight-00.yaml -------------------------------------------------------------------------------- /lights/pointlight-01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/lights/pointlight-01.yaml -------------------------------------------------------------------------------- /lights/pointlight-02.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/lights/pointlight-02.yaml -------------------------------------------------------------------------------- /lights/pointlight-attenuation-00.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/lights/pointlight-attenuation-00.yaml -------------------------------------------------------------------------------- /lights/pointlight-attenuation-01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/lights/pointlight-attenuation-01.yaml -------------------------------------------------------------------------------- /lights/pointlight-attenuation-02.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/lights/pointlight-attenuation-02.yaml -------------------------------------------------------------------------------- /lights/pointlight-radius-00.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/lights/pointlight-radius-00.yaml -------------------------------------------------------------------------------- /lights/pointlight-radius-01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/lights/pointlight-radius-01.yaml -------------------------------------------------------------------------------- /lights/spotlight.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/lights/spotlight.yaml -------------------------------------------------------------------------------- /material/dynamic-normals.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/material/dynamic-normals.yaml -------------------------------------------------------------------------------- /material/earth.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/material/earth.ai -------------------------------------------------------------------------------- /material/earth.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/material/earth.frag -------------------------------------------------------------------------------- /material/grass.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/material/grass.jpg -------------------------------------------------------------------------------- /material/grass01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/material/grass01.jpg -------------------------------------------------------------------------------- /material/grid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/material/grid.jpg -------------------------------------------------------------------------------- /material/material.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/material/material.frag -------------------------------------------------------------------------------- /material/materials.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/material/materials.ai -------------------------------------------------------------------------------- /material/materials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/material/materials.yaml -------------------------------------------------------------------------------- /material/normals.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/material/normals.yaml -------------------------------------------------------------------------------- /material/planar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/material/planar.yaml -------------------------------------------------------------------------------- /material/road.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/material/road.jpg -------------------------------------------------------------------------------- /material/rock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/material/rock.jpg -------------------------------------------------------------------------------- /material/sem.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/material/sem.jpg -------------------------------------------------------------------------------- /material/sky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/material/sky.jpg -------------------------------------------------------------------------------- /material/spheremap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/material/spheremap.yaml -------------------------------------------------------------------------------- /material/triplanar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/material/triplanar.yaml -------------------------------------------------------------------------------- /material/uv-grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/material/uv-grid.png -------------------------------------------------------------------------------- /material/uv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/material/uv.yaml -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /procedural/tronish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/procedural/tronish.yaml -------------------------------------------------------------------------------- /scene.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/scene.yaml -------------------------------------------------------------------------------- /shaders/color.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/shaders/color.yaml -------------------------------------------------------------------------------- /shaders/default-pipeline.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/shaders/default-pipeline.ai -------------------------------------------------------------------------------- /shaders/filter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/shaders/filter.yaml -------------------------------------------------------------------------------- /shaders/normal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/shaders/normal.yaml -------------------------------------------------------------------------------- /shaders/position.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/shaders/position.yaml -------------------------------------------------------------------------------- /src/leaflet-hash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/src/leaflet-hash.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/src/main.js -------------------------------------------------------------------------------- /src/marked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/src/marked.js -------------------------------------------------------------------------------- /src/tangram.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/src/tangram.min.js -------------------------------------------------------------------------------- /src/tutorial-embeds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/src/tutorial-embeds.js -------------------------------------------------------------------------------- /tutorials/custom/custom-styles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/tutorials/custom/custom-styles.jpg -------------------------------------------------------------------------------- /tutorials/custom/custom1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/tutorials/custom/custom1.jpg -------------------------------------------------------------------------------- /tutorials/custom/custom1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/tutorials/custom/custom1.yaml -------------------------------------------------------------------------------- /tutorials/custom/custom10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/tutorials/custom/custom10.yaml -------------------------------------------------------------------------------- /tutorials/custom/custom11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/tutorials/custom/custom11.jpg -------------------------------------------------------------------------------- /tutorials/custom/custom11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/tutorials/custom/custom11.yaml -------------------------------------------------------------------------------- /tutorials/custom/custom12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/tutorials/custom/custom12.jpg -------------------------------------------------------------------------------- /tutorials/custom/custom12.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/tutorials/custom/custom12.yaml -------------------------------------------------------------------------------- /tutorials/custom/custom13.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/tutorials/custom/custom13.yaml -------------------------------------------------------------------------------- /tutorials/custom/custom2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/tutorials/custom/custom2.yaml -------------------------------------------------------------------------------- /tutorials/custom/custom3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/tutorials/custom/custom3.jpg -------------------------------------------------------------------------------- /tutorials/custom/custom3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/tutorials/custom/custom3.yaml -------------------------------------------------------------------------------- /tutorials/custom/custom4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/tutorials/custom/custom4.jpg -------------------------------------------------------------------------------- /tutorials/custom/custom4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/tutorials/custom/custom4.yaml -------------------------------------------------------------------------------- /tutorials/custom/custom5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/tutorials/custom/custom5.jpg -------------------------------------------------------------------------------- /tutorials/custom/custom5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/tutorials/custom/custom5.yaml -------------------------------------------------------------------------------- /tutorials/custom/custom6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/tutorials/custom/custom6.jpg -------------------------------------------------------------------------------- /tutorials/custom/custom6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/tutorials/custom/custom6.yaml -------------------------------------------------------------------------------- /tutorials/custom/custom7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/tutorials/custom/custom7.yaml -------------------------------------------------------------------------------- /tutorials/custom/custom8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/tutorials/custom/custom8.yaml -------------------------------------------------------------------------------- /tutorials/custom/custom9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/tutorials/custom/custom9.jpg -------------------------------------------------------------------------------- /tutorials/custom/custom9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/tutorials/custom/custom9.yaml -------------------------------------------------------------------------------- /tutorials/custom/fade.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/tutorials/custom/fade.gif -------------------------------------------------------------------------------- /tutorials/editing-basemaps/editing-basemaps1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/tutorials/editing-basemaps/editing-basemaps1.jpg -------------------------------------------------------------------------------- /tutorials/editing-basemaps/editing-basemaps1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/tutorials/editing-basemaps/editing-basemaps1.yaml -------------------------------------------------------------------------------- /tutorials/editing-basemaps/editing-basemaps2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/tutorials/editing-basemaps/editing-basemaps2.jpg -------------------------------------------------------------------------------- /tutorials/editing-basemaps/editing-basemaps2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/tutorials/editing-basemaps/editing-basemaps2.yaml -------------------------------------------------------------------------------- /tutorials/editing-basemaps/editing-basemaps3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/tutorials/editing-basemaps/editing-basemaps3.jpg -------------------------------------------------------------------------------- /tutorials/editing-basemaps/editing-basemaps3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/tutorials/editing-basemaps/editing-basemaps3.yaml -------------------------------------------------------------------------------- /tutorials/editing-basemaps/editing-basemaps4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/tutorials/editing-basemaps/editing-basemaps4.jpg -------------------------------------------------------------------------------- /tutorials/editing-basemaps/editing-basemaps4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/tutorials/editing-basemaps/editing-basemaps4.yaml -------------------------------------------------------------------------------- /tutorials/editing-basemaps/shape.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/tutorials/editing-basemaps/shape.geojson -------------------------------------------------------------------------------- /tutorials/editing-basemaps/simple-basemap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/tutorials/editing-basemaps/simple-basemap.yaml -------------------------------------------------------------------------------- /tutorials/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tangram-docs/HEAD/tutorials/loading.gif --------------------------------------------------------------------------------