├── .gitignore ├── .gitmodules ├── .travis.yml ├── BUILDING.md ├── CONTRIBUTING.md ├── LICENSE ├── NEWS.md ├── README.md ├── all ├── modules │ ├── components │ │ ├── Layers.i │ │ ├── LicenseManagerListener.i │ │ └── Options.i │ ├── core │ │ ├── Address.i │ │ ├── BinaryData.i │ │ ├── IntVector.i │ │ ├── MapBounds.i │ │ ├── MapEnvelope.i │ │ ├── MapPos.i │ │ ├── MapRange.i │ │ ├── MapTile.i │ │ ├── MapVec.i │ │ ├── ScreenBounds.i │ │ ├── ScreenPos.i │ │ ├── StringMap.i │ │ ├── StringVector.i │ │ ├── Variant.i │ │ ├── VariantArrayBuilder.i │ │ └── VariantObjectBuilder.i │ ├── datasources │ │ ├── AssetTileDataSource.i │ │ ├── BitmapOverlayRasterTileDataSource.i │ │ ├── CacheTileDataSource.i │ │ ├── CartoOnlineTileDataSource.i │ │ ├── CombinedTileDataSource.i │ │ ├── GDALRasterTileDataSource.i │ │ ├── GeoJSONVectorTileDataSource.i │ │ ├── HTTPTileDataSource.i │ │ ├── LocalVectorDataSource.i │ │ ├── MBTilesTileDataSource.i │ │ ├── MapTilerOnlineTileDataSource.i │ │ ├── MemoryCacheTileDataSource.i │ │ ├── MergedMBVTTileDataSource.i │ │ ├── NMLModelLODTreeDataSource.i │ │ ├── OGRVectorDataBase.i │ │ ├── OGRVectorDataSource.i │ │ ├── OfflineNMLModelLODTreeDataSource.i │ │ ├── OnlineNMLModelLODTreeDataSource.i │ │ ├── OrderedTileDataSource.i │ │ ├── PackageManagerTileDataSource.i │ │ ├── PersistentCacheTileDataSource.i │ │ ├── TileDataSource.i │ │ ├── TileDownloadListener.i │ │ ├── VectorDataSource.i │ │ └── components │ │ │ ├── TileData.i │ │ │ └── VectorData.i │ ├── geocoding │ │ ├── GeocodingAddress.i │ │ ├── GeocodingRequest.i │ │ ├── GeocodingResult.i │ │ ├── GeocodingService.i │ │ ├── MapBoxOnlineGeocodingService.i │ │ ├── MapBoxOnlineReverseGeocodingService.i │ │ ├── OSMOfflineGeocodingService.i │ │ ├── OSMOfflineReverseGeocodingService.i │ │ ├── PackageManagerGeocodingService.i │ │ ├── PackageManagerReverseGeocodingService.i │ │ ├── PeliasOnlineGeocodingService.i │ │ ├── PeliasOnlineReverseGeocodingService.i │ │ ├── ReverseGeocodingRequest.i │ │ ├── ReverseGeocodingService.i │ │ ├── TomTomOnlineGeocodingService.i │ │ └── TomTomOnlineReverseGeocodingService.i │ ├── geometry │ │ ├── DouglasPeuckerGeometrySimplifier.i │ │ ├── Feature.i │ │ ├── FeatureBuilder.i │ │ ├── FeatureCollection.i │ │ ├── GeoJSONGeometryReader.i │ │ ├── GeoJSONGeometryWriter.i │ │ ├── Geometry.i │ │ ├── GeometrySimplifier.i │ │ ├── LineGeometry.i │ │ ├── MultiGeometry.i │ │ ├── MultiLineGeometry.i │ │ ├── MultiPointGeometry.i │ │ ├── MultiPolygonGeometry.i │ │ ├── PointGeometry.i │ │ ├── PolygonGeometry.i │ │ ├── VectorTileFeature.i │ │ ├── VectorTileFeatureBuilder.i │ │ ├── VectorTileFeatureCollection.i │ │ ├── WKBGeometryReader.i │ │ ├── WKBGeometryWriter.i │ │ ├── WKTGeometryReader.i │ │ └── WKTGeometryWriter.i │ ├── graphics │ │ ├── Bitmap.i │ │ ├── Color.i │ │ └── ViewState.i │ ├── layers │ │ ├── CartoOfflineVectorTileLayer.i │ │ ├── CartoOnlineRasterTileLayer.i │ │ ├── CartoOnlineVectorTileLayer.i │ │ ├── CartoVectorTileLayer.i │ │ ├── ClusterElementBuilder.i │ │ ├── ClusteredVectorLayer.i │ │ ├── EditableVectorLayer.i │ │ ├── HillshadeRasterTileLayer.i │ │ ├── Layer.i │ │ ├── NMLModelLODTreeEventListener.i │ │ ├── NMLModelLODTreeLayer.i │ │ ├── RasterTileEventListener.i │ │ ├── RasterTileLayer.i │ │ ├── SolidLayer.i │ │ ├── TileLayer.i │ │ ├── TileLoadListener.i │ │ ├── TorqueTileLayer.i │ │ ├── UTFGridEventListener.i │ │ ├── VectorEditEventListener.i │ │ ├── VectorElementEventListener.i │ │ ├── VectorLayer.i │ │ ├── VectorTileEventListener.i │ │ └── VectorTileLayer.i │ ├── packagemanager │ │ ├── CartoPackageManager.i │ │ ├── PackageInfo.i │ │ ├── PackageManager.i │ │ ├── PackageManagerListener.i │ │ ├── PackageMetaInfo.i │ │ ├── PackageStatus.i │ │ └── PackageTileMask.i │ ├── projections │ │ ├── EPSG3857.i │ │ ├── EPSG4326.i │ │ └── Projection.i │ ├── renderers │ │ ├── MapRenderer.i │ │ ├── MapRendererListener.i │ │ ├── RedrawRequestListener.i │ │ ├── RendererCaptureListener.i │ │ └── components │ │ │ └── CullState.i │ ├── routing │ │ ├── CartoOnlineRoutingService.i │ │ ├── OSRMOfflineRoutingService.i │ │ ├── PackageManagerRoutingService.i │ │ ├── PackageManagerValhallaRoutingService.i │ │ ├── RouteMatchingEdge.i │ │ ├── RouteMatchingPoint.i │ │ ├── RouteMatchingRequest.i │ │ ├── RouteMatchingResult.i │ │ ├── RoutingInstruction.i │ │ ├── RoutingRequest.i │ │ ├── RoutingResult.i │ │ ├── RoutingService.i │ │ ├── SGREOfflineRoutingService.i │ │ ├── ValhallaOfflineRoutingService.i │ │ └── ValhallaOnlineRoutingService.i │ ├── search │ │ ├── FeatureCollectionSearchService.i │ │ ├── SearchRequest.i │ │ ├── VectorElementSearchService.i │ │ └── VectorTileSearchService.i │ ├── services │ │ ├── CartoMapsService.i │ │ └── CartoSQLService.i │ ├── styles │ │ ├── AnimationStyle.i │ │ ├── AnimationStyleBuilder.i │ │ ├── BalloonPopupButtonStyle.i │ │ ├── BalloonPopupButtonStyleBuilder.i │ │ ├── BalloonPopupStyle.i │ │ ├── BalloonPopupStyleBuilder.i │ │ ├── BillboardStyle.i │ │ ├── BillboardStyleBuilder.i │ │ ├── CartoCSSStyleSet.i │ │ ├── CompiledStyleSet.i │ │ ├── GeometryCollectionStyle.i │ │ ├── GeometryCollectionStyleBuilder.i │ │ ├── LabelStyle.i │ │ ├── LabelStyleBuilder.i │ │ ├── LineStyle.i │ │ ├── LineStyleBuilder.i │ │ ├── MarkerStyle.i │ │ ├── MarkerStyleBuilder.i │ │ ├── NMLModelStyle.i │ │ ├── NMLModelStyleBuilder.i │ │ ├── PointStyle.i │ │ ├── PointStyleBuilder.i │ │ ├── Polygon3DStyle.i │ │ ├── Polygon3DStyleBuilder.i │ │ ├── PolygonStyle.i │ │ ├── PolygonStyleBuilder.i │ │ ├── PopupStyle.i │ │ ├── PopupStyleBuilder.i │ │ ├── Style.i │ │ ├── StyleBuilder.i │ │ ├── StyleSelector.i │ │ ├── StyleSelectorBuilder.i │ │ ├── TextStyle.i │ │ └── TextStyleBuilder.i │ ├── ui │ │ ├── BalloonPopupButtonClickInfo.i │ │ ├── BaseMapView.i │ │ ├── ClickInfo.i │ │ ├── MapClickInfo.i │ │ ├── MapEventListener.i │ │ ├── MapInteractionInfo.i │ │ ├── NMLModelLODTreeClickInfo.i │ │ ├── PopupClickInfo.i │ │ ├── PopupDrawInfo.i │ │ ├── RasterTileClickInfo.i │ │ ├── UTFGridClickInfo.i │ │ ├── VectorElementClickInfo.i │ │ ├── VectorElementDragInfo.i │ │ └── VectorTileClickInfo.i │ ├── utils │ │ ├── AssetPackage.i │ │ ├── Log.i │ │ ├── LogEventListener.i │ │ ├── TileUtils.i │ │ └── ZippedAssetPackage.i │ ├── vectorelements │ │ ├── BalloonPopup.i │ │ ├── BalloonPopupButton.i │ │ ├── BalloonPopupEventListener.i │ │ ├── Billboard.i │ │ ├── CustomPopup.i │ │ ├── CustomPopupHandler.i │ │ ├── GeometryCollection.i │ │ ├── Label.i │ │ ├── Line.i │ │ ├── Marker.i │ │ ├── NMLModel.i │ │ ├── Point.i │ │ ├── Polygon.i │ │ ├── Polygon3D.i │ │ ├── Popup.i │ │ ├── Text.i │ │ └── VectorElement.i │ └── vectortiles │ │ ├── CartoVectorTileDecoder.i │ │ ├── MBVectorTileDecoder.i │ │ ├── TorqueTileDecoder.i │ │ └── VectorTileDecoder.i └── native │ ├── assets │ ├── CartoStylesV2ZIP.h │ ├── CartoWatermarkPNG.h │ ├── DefaultBackgroundPNG.h │ ├── DefaultLinePNG.h │ ├── DefaultMarkerPNG.h │ ├── DefaultNMLModelNML.h │ ├── DefaultPointPNG.h │ ├── DefaultPolygon3DPNG.h │ ├── DefaultPolygonPNG.h │ ├── EvaluationWatermarkPNG.h │ ├── ExpiredWatermarkPNG.h │ ├── ValhallaDefaultConfig.h │ └── gdal │ │ ├── coordinate_axis_csv.h │ │ ├── datum_shift_csv.h │ │ ├── ellipsoid_csv.h │ │ ├── gcs_csv.h │ │ ├── gcs_override_csv.h │ │ ├── gdal_datum_csv.h │ │ ├── pcs_csv.h │ │ ├── pcs_override_csv.h │ │ ├── projop_wparm_csv.h │ │ └── unit_of_measure_csv.h │ ├── components │ ├── CancelableTask.h │ ├── CancelableThreadPool.cpp │ ├── CancelableThreadPool.h │ ├── ClassRegistry.cpp │ ├── ClassRegistry.h │ ├── Director.h │ ├── DirectorPtr.h │ ├── Exceptions.h │ ├── Layers.cpp │ ├── Layers.h │ ├── LicenseManager.cpp │ ├── LicenseManager.h │ ├── LicenseManagerListener.h │ ├── Options.cpp │ ├── Options.h │ ├── Task.h │ └── ThreadWorker.h │ ├── core │ ├── Address.cpp │ ├── Address.h │ ├── BinaryData.cpp │ ├── BinaryData.h │ ├── MapBounds.cpp │ ├── MapBounds.h │ ├── MapEnvelope.cpp │ ├── MapEnvelope.h │ ├── MapPos.cpp │ ├── MapPos.h │ ├── MapRange.cpp │ ├── MapRange.h │ ├── MapTile.cpp │ ├── MapTile.h │ ├── MapVec.cpp │ ├── MapVec.h │ ├── ScreenBounds.cpp │ ├── ScreenBounds.h │ ├── ScreenPos.cpp │ ├── ScreenPos.h │ ├── Variant.cpp │ ├── Variant.h │ ├── VariantArrayBuilder.cpp │ ├── VariantArrayBuilder.h │ ├── VariantObjectBuilder.cpp │ └── VariantObjectBuilder.h │ ├── datasources │ ├── AssetTileDataSource.cpp │ ├── AssetTileDataSource.h │ ├── BitmapOverlayRasterTileDataSource.cpp │ ├── BitmapOverlayRasterTileDataSource.h │ ├── CacheTileDataSource.cpp │ ├── CacheTileDataSource.h │ ├── CartoOnlineTileDataSource.cpp │ ├── CartoOnlineTileDataSource.h │ ├── CombinedTileDataSource.cpp │ ├── CombinedTileDataSource.h │ ├── GDALRasterTileDataSource.cpp │ ├── GDALRasterTileDataSource.h │ ├── GeoJSONVectorTileDataSource.cpp │ ├── GeoJSONVectorTileDataSource.h │ ├── HTTPTileDataSource.cpp │ ├── HTTPTileDataSource.h │ ├── LocalVectorDataSource.cpp │ ├── LocalVectorDataSource.h │ ├── MBTilesTileDataSource.cpp │ ├── MBTilesTileDataSource.h │ ├── MapTilerOnlineTileDataSource.cpp │ ├── MapTilerOnlineTileDataSource.h │ ├── MemoryCacheTileDataSource.cpp │ ├── MemoryCacheTileDataSource.h │ ├── MergedMBVTTileDataSource.cpp │ ├── MergedMBVTTileDataSource.h │ ├── NMLModelLODTreeDataSource.cpp │ ├── NMLModelLODTreeDataSource.h │ ├── OGRVectorDataBase.cpp │ ├── OGRVectorDataBase.h │ ├── OGRVectorDataSource.cpp │ ├── OGRVectorDataSource.h │ ├── OfflineNMLModelLODTreeDataSource.cpp │ ├── OfflineNMLModelLODTreeDataSource.h │ ├── OnlineNMLModelLODTreeDataSource.cpp │ ├── OnlineNMLModelLODTreeDataSource.h │ ├── OrderedTileDataSource.cpp │ ├── OrderedTileDataSource.h │ ├── PackageManagerTileDataSource.cpp │ ├── PackageManagerTileDataSource.h │ ├── PersistentCacheTileDataSource.cpp │ ├── PersistentCacheTileDataSource.h │ ├── TileDataSource.cpp │ ├── TileDataSource.h │ ├── TileDownloadListener.h │ ├── VectorDataSource.cpp │ ├── VectorDataSource.h │ └── components │ │ ├── NMLModelLODTree.cpp │ │ ├── NMLModelLODTree.h │ │ ├── TileData.cpp │ │ ├── TileData.h │ │ ├── VectorData.cpp │ │ └── VectorData.h │ ├── geocoding │ ├── GeocodingAddress.cpp │ ├── GeocodingAddress.h │ ├── GeocodingRequest.cpp │ ├── GeocodingRequest.h │ ├── GeocodingResult.cpp │ ├── GeocodingResult.h │ ├── GeocodingService.cpp │ ├── GeocodingService.h │ ├── MapBoxOnlineGeocodingService.cpp │ ├── MapBoxOnlineGeocodingService.h │ ├── MapBoxOnlineReverseGeocodingService.cpp │ ├── MapBoxOnlineReverseGeocodingService.h │ ├── OSMOfflineGeocodingService.cpp │ ├── OSMOfflineGeocodingService.h │ ├── OSMOfflineReverseGeocodingService.cpp │ ├── OSMOfflineReverseGeocodingService.h │ ├── PackageManagerGeocodingService.cpp │ ├── PackageManagerGeocodingService.h │ ├── PackageManagerReverseGeocodingService.cpp │ ├── PackageManagerReverseGeocodingService.h │ ├── PeliasOnlineGeocodingService.cpp │ ├── PeliasOnlineGeocodingService.h │ ├── PeliasOnlineReverseGeocodingService.cpp │ ├── PeliasOnlineReverseGeocodingService.h │ ├── ReverseGeocodingRequest.cpp │ ├── ReverseGeocodingRequest.h │ ├── ReverseGeocodingService.cpp │ ├── ReverseGeocodingService.h │ ├── TomTomOnlineGeocodingService.cpp │ ├── TomTomOnlineGeocodingService.h │ ├── TomTomOnlineReverseGeocodingService.cpp │ ├── TomTomOnlineReverseGeocodingService.h │ └── utils │ │ ├── CartoGeocodingProxy.cpp │ │ ├── CartoGeocodingProxy.h │ │ ├── MapBoxGeocodingProxy.cpp │ │ ├── MapBoxGeocodingProxy.h │ │ ├── PeliasGeocodingProxy.cpp │ │ ├── PeliasGeocodingProxy.h │ │ ├── TomTomGeocodingProxy.cpp │ │ └── TomTomGeocodingProxy.h │ ├── geometry │ ├── DouglasPeuckerGeometrySimplifier.cpp │ ├── DouglasPeuckerGeometrySimplifier.h │ ├── Feature.cpp │ ├── Feature.h │ ├── FeatureBuilder.cpp │ ├── FeatureBuilder.h │ ├── FeatureCollection.cpp │ ├── FeatureCollection.h │ ├── GeoJSONGeometryReader.cpp │ ├── GeoJSONGeometryReader.h │ ├── GeoJSONGeometryWriter.cpp │ ├── GeoJSONGeometryWriter.h │ ├── Geometry.h │ ├── GeometrySimplifier.h │ ├── LineGeometry.cpp │ ├── LineGeometry.h │ ├── MultiGeometry.cpp │ ├── MultiGeometry.h │ ├── MultiLineGeometry.cpp │ ├── MultiLineGeometry.h │ ├── MultiPointGeometry.cpp │ ├── MultiPointGeometry.h │ ├── MultiPolygonGeometry.cpp │ ├── MultiPolygonGeometry.h │ ├── PointGeometry.cpp │ ├── PointGeometry.h │ ├── PolygonGeometry.cpp │ ├── PolygonGeometry.h │ ├── VectorTileFeature.cpp │ ├── VectorTileFeature.h │ ├── VectorTileFeatureBuilder.cpp │ ├── VectorTileFeatureBuilder.h │ ├── VectorTileFeatureCollection.cpp │ ├── VectorTileFeatureCollection.h │ ├── WKBGeometryReader.cpp │ ├── WKBGeometryReader.h │ ├── WKBGeometryWriter.cpp │ ├── WKBGeometryWriter.h │ ├── WKTGeometryReader.cpp │ ├── WKTGeometryReader.h │ ├── WKTGeometryWriter.cpp │ ├── WKTGeometryWriter.h │ └── utils │ │ ├── KDTreeSpatialIndex.h │ │ ├── NullSpatialIndex.h │ │ ├── SpatialIndex.h │ │ ├── WKBGeometryEnums.h │ │ ├── WKTGeometryGenerator.h │ │ └── WKTGeometryParser.h │ ├── graphics │ ├── Bitmap.cpp │ ├── Bitmap.h │ ├── BitmapCanvas.cpp │ ├── BitmapCanvas.h │ ├── Color.cpp │ ├── Color.h │ ├── ViewState.cpp │ ├── ViewState.h │ └── utils │ │ ├── BackgroundBitmapGenerator.cpp │ │ ├── BackgroundBitmapGenerator.h │ │ ├── BitmapFilterTable.cpp │ │ ├── BitmapFilterTable.h │ │ ├── SkyBitmapGenerator.cpp │ │ └── SkyBitmapGenerator.h │ ├── layers │ ├── CartoOfflineVectorTileLayer.cpp │ ├── CartoOfflineVectorTileLayer.h │ ├── CartoOnlineRasterTileLayer.cpp │ ├── CartoOnlineRasterTileLayer.h │ ├── CartoOnlineVectorTileLayer.cpp │ ├── CartoOnlineVectorTileLayer.h │ ├── CartoVectorTileLayer.cpp │ ├── CartoVectorTileLayer.h │ ├── ClusterElementBuilder.h │ ├── ClusteredVectorLayer.cpp │ ├── ClusteredVectorLayer.h │ ├── EditableVectorLayer.cpp │ ├── EditableVectorLayer.h │ ├── HillshadeRasterTileLayer.cpp │ ├── HillshadeRasterTileLayer.h │ ├── Layer.cpp │ ├── Layer.h │ ├── NMLModelLODTreeEventListener.h │ ├── NMLModelLODTreeLayer.cpp │ ├── NMLModelLODTreeLayer.h │ ├── RasterTileEventListener.h │ ├── RasterTileLayer.cpp │ ├── RasterTileLayer.h │ ├── SolidLayer.cpp │ ├── SolidLayer.h │ ├── TileLayer.cpp │ ├── TileLayer.h │ ├── TileLoadListener.h │ ├── TorqueTileLayer.cpp │ ├── TorqueTileLayer.h │ ├── UTFGridEventListener.h │ ├── VectorEditEventListener.h │ ├── VectorElementEventListener.h │ ├── VectorLayer.cpp │ ├── VectorLayer.h │ ├── VectorTileEventListener.h │ ├── VectorTileLayer.cpp │ ├── VectorTileLayer.h │ └── components │ │ ├── UTFGridTile.cpp │ │ └── UTFGridTile.h │ ├── network │ ├── HTTPClient.cpp │ ├── HTTPClient.h │ ├── HTTPClientPionImpl.cpp │ └── HTTPClientPionImpl.h │ ├── packagemanager │ ├── CartoPackageManager.cpp │ ├── CartoPackageManager.h │ ├── PackageInfo.cpp │ ├── PackageInfo.h │ ├── PackageManager.cpp │ ├── PackageManager.h │ ├── PackageManagerListener.h │ ├── PackageMetaInfo.cpp │ ├── PackageMetaInfo.h │ ├── PackageStatus.h │ ├── PackageTileMask.cpp │ ├── PackageTileMask.h │ └── handlers │ │ ├── GeocodingPackageHandler.cpp │ │ ├── GeocodingPackageHandler.h │ │ ├── MapPackageHandler.cpp │ │ ├── MapPackageHandler.h │ │ ├── PackageHandler.h │ │ ├── PackageHandlerFactory.cpp │ │ ├── PackageHandlerFactory.h │ │ ├── RoutingPackageHandler.cpp │ │ ├── RoutingPackageHandler.h │ │ ├── ValhallaRoutingPackageHandler.cpp │ │ └── ValhallaRoutingPackageHandler.h │ ├── projections │ ├── EPSG3857.cpp │ ├── EPSG3857.h │ ├── EPSG4326.cpp │ ├── EPSG4326.h │ ├── PlanarProjectionSurface.cpp │ ├── PlanarProjectionSurface.h │ ├── Projection.cpp │ ├── Projection.h │ ├── ProjectionSurface.h │ ├── SphericalProjectionSurface.cpp │ └── SphericalProjectionSurface.h │ ├── renderers │ ├── BackgroundRenderer.cpp │ ├── BackgroundRenderer.h │ ├── BillboardRenderer.cpp │ ├── BillboardRenderer.h │ ├── GeometryCollectionRenderer.cpp │ ├── GeometryCollectionRenderer.h │ ├── LineRenderer.cpp │ ├── LineRenderer.h │ ├── MapRenderer.cpp │ ├── MapRenderer.h │ ├── MapRendererListener.h │ ├── NMLModelLODTreeRenderer.cpp │ ├── NMLModelLODTreeRenderer.h │ ├── PointRenderer.cpp │ ├── PointRenderer.h │ ├── Polygon3DRenderer.cpp │ ├── Polygon3DRenderer.h │ ├── PolygonRenderer.cpp │ ├── PolygonRenderer.h │ ├── RedrawRequestListener.h │ ├── RendererCaptureListener.h │ ├── SolidRenderer.cpp │ ├── SolidRenderer.h │ ├── TileRenderer.cpp │ ├── TileRenderer.h │ ├── WatermarkRenderer.cpp │ ├── WatermarkRenderer.h │ ├── cameraevents │ │ ├── CameraEvent.cpp │ │ ├── CameraEvent.h │ │ ├── CameraPanEvent.cpp │ │ ├── CameraPanEvent.h │ │ ├── CameraRotationEvent.cpp │ │ ├── CameraRotationEvent.h │ │ ├── CameraTiltEvent.cpp │ │ ├── CameraTiltEvent.h │ │ ├── CameraZoomEvent.cpp │ │ └── CameraZoomEvent.h │ ├── components │ │ ├── AnimationHandler.cpp │ │ ├── AnimationHandler.h │ │ ├── BillboardSorter.cpp │ │ ├── BillboardSorter.h │ │ ├── CullState.cpp │ │ ├── CullState.h │ │ ├── KineticEventHandler.cpp │ │ ├── KineticEventHandler.h │ │ ├── RayIntersectedElement.cpp │ │ ├── RayIntersectedElement.h │ │ └── RayIntersectedElementComparator.h │ ├── drawdatas │ │ ├── BillboardDrawData.cpp │ │ ├── BillboardDrawData.h │ │ ├── GeometryCollectionDrawData.cpp │ │ ├── GeometryCollectionDrawData.h │ │ ├── LabelDrawData.cpp │ │ ├── LabelDrawData.h │ │ ├── LineDrawData.cpp │ │ ├── LineDrawData.h │ │ ├── MarkerDrawData.cpp │ │ ├── MarkerDrawData.h │ │ ├── NMLModelDrawData.cpp │ │ ├── NMLModelDrawData.h │ │ ├── NMLModelLODTreeDrawData.cpp │ │ ├── NMLModelLODTreeDrawData.h │ │ ├── PointDrawData.cpp │ │ ├── PointDrawData.h │ │ ├── Polygon3DDrawData.cpp │ │ ├── Polygon3DDrawData.h │ │ ├── PolygonDrawData.cpp │ │ ├── PolygonDrawData.h │ │ ├── PopupDrawData.cpp │ │ ├── PopupDrawData.h │ │ ├── TileDrawData.cpp │ │ ├── TileDrawData.h │ │ ├── VectorElementDrawData.cpp │ │ └── VectorElementDrawData.h │ ├── utils │ │ ├── BitmapTextureCache.cpp │ │ ├── BitmapTextureCache.h │ │ ├── FrameBuffer.cpp │ │ ├── FrameBuffer.h │ │ ├── GLContext.cpp │ │ ├── GLContext.h │ │ ├── GLResource.cpp │ │ ├── GLResource.h │ │ ├── GLResourceManager.cpp │ │ ├── GLResourceManager.h │ │ ├── NMLResources.cpp │ │ ├── NMLResources.h │ │ ├── Shader.cpp │ │ ├── Shader.h │ │ ├── Texture.cpp │ │ ├── Texture.h │ │ ├── VTRenderer.cpp │ │ └── VTRenderer.h │ └── workers │ │ ├── BillboardPlacementWorker.cpp │ │ ├── BillboardPlacementWorker.h │ │ ├── CullWorker.cpp │ │ ├── CullWorker.h │ │ ├── VTLabelPlacementWorker.cpp │ │ └── VTLabelPlacementWorker.h │ ├── routing │ ├── CartoOnlineRoutingService.cpp │ ├── CartoOnlineRoutingService.h │ ├── OSRMOfflineRoutingService.cpp │ ├── OSRMOfflineRoutingService.h │ ├── PackageManagerRoutingService.cpp │ ├── PackageManagerRoutingService.h │ ├── PackageManagerValhallaRoutingService.cpp │ ├── PackageManagerValhallaRoutingService.h │ ├── RouteMatchingEdge.cpp │ ├── RouteMatchingEdge.h │ ├── RouteMatchingPoint.cpp │ ├── RouteMatchingPoint.h │ ├── RouteMatchingRequest.cpp │ ├── RouteMatchingRequest.h │ ├── RouteMatchingResult.cpp │ ├── RouteMatchingResult.h │ ├── RoutingInstruction.cpp │ ├── RoutingInstruction.h │ ├── RoutingRequest.cpp │ ├── RoutingRequest.h │ ├── RoutingResult.cpp │ ├── RoutingResult.h │ ├── RoutingService.cpp │ ├── RoutingService.h │ ├── SGREOfflineRoutingService.cpp │ ├── SGREOfflineRoutingService.h │ ├── ValhallaOfflineRoutingService.cpp │ ├── ValhallaOfflineRoutingService.h │ ├── ValhallaOnlineRoutingService.cpp │ ├── ValhallaOnlineRoutingService.h │ └── utils │ │ ├── OSRMRoutingProxy.cpp │ │ ├── OSRMRoutingProxy.h │ │ ├── RoutingInstructionBuilder.cpp │ │ ├── RoutingInstructionBuilder.h │ │ ├── RoutingResultBuilder.cpp │ │ ├── RoutingResultBuilder.h │ │ ├── ValhallaRoutingProxy.cpp │ │ └── ValhallaRoutingProxy.h │ ├── search │ ├── FeatureCollectionSearchService.cpp │ ├── FeatureCollectionSearchService.h │ ├── SearchRequest.cpp │ ├── SearchRequest.h │ ├── VectorElementSearchService.cpp │ ├── VectorElementSearchService.h │ ├── VectorTileSearchService.cpp │ ├── VectorTileSearchService.h │ ├── query │ │ ├── QueryContext.h │ │ ├── QueryExpression.h │ │ ├── QueryExpressionImpl.h │ │ ├── QueryExpressionParser.cpp │ │ └── QueryExpressionParser.h │ └── utils │ │ ├── SearchProxy.cpp │ │ └── SearchProxy.h │ ├── services │ ├── CartoMapsService.cpp │ ├── CartoMapsService.h │ ├── CartoSQLService.cpp │ └── CartoSQLService.h │ ├── styles │ ├── AnimationStyle.cpp │ ├── AnimationStyle.h │ ├── AnimationStyleBuilder.cpp │ ├── AnimationStyleBuilder.h │ ├── BalloonPopupButtonStyle.cpp │ ├── BalloonPopupButtonStyle.h │ ├── BalloonPopupButtonStyleBuilder.cpp │ ├── BalloonPopupButtonStyleBuilder.h │ ├── BalloonPopupStyle.cpp │ ├── BalloonPopupStyle.h │ ├── BalloonPopupStyleBuilder.cpp │ ├── BalloonPopupStyleBuilder.h │ ├── BillboardStyle.cpp │ ├── BillboardStyle.h │ ├── BillboardStyleBuilder.cpp │ ├── BillboardStyleBuilder.h │ ├── CartoCSSStyleSet.cpp │ ├── CartoCSSStyleSet.h │ ├── CompiledStyleSet.cpp │ ├── CompiledStyleSet.h │ ├── GeometryCollectionStyle.cpp │ ├── GeometryCollectionStyle.h │ ├── GeometryCollectionStyleBuilder.cpp │ ├── GeometryCollectionStyleBuilder.h │ ├── LabelStyle.cpp │ ├── LabelStyle.h │ ├── LabelStyleBuilder.cpp │ ├── LabelStyleBuilder.h │ ├── LineStyle.cpp │ ├── LineStyle.h │ ├── LineStyleBuilder.cpp │ ├── LineStyleBuilder.h │ ├── MarkerStyle.cpp │ ├── MarkerStyle.h │ ├── MarkerStyleBuilder.cpp │ ├── MarkerStyleBuilder.h │ ├── NMLModelStyle.cpp │ ├── NMLModelStyle.h │ ├── NMLModelStyleBuilder.cpp │ ├── NMLModelStyleBuilder.h │ ├── PointStyle.cpp │ ├── PointStyle.h │ ├── PointStyleBuilder.cpp │ ├── PointStyleBuilder.h │ ├── Polygon3DStyle.cpp │ ├── Polygon3DStyle.h │ ├── Polygon3DStyleBuilder.cpp │ ├── Polygon3DStyleBuilder.h │ ├── PolygonStyle.cpp │ ├── PolygonStyle.h │ ├── PolygonStyleBuilder.cpp │ ├── PolygonStyleBuilder.h │ ├── PopupStyle.cpp │ ├── PopupStyle.h │ ├── PopupStyleBuilder.cpp │ ├── PopupStyleBuilder.h │ ├── Style.cpp │ ├── Style.h │ ├── StyleBuilder.cpp │ ├── StyleBuilder.h │ ├── StyleSelector.cpp │ ├── StyleSelector.h │ ├── StyleSelectorBuilder.cpp │ ├── StyleSelectorBuilder.h │ ├── StyleSelectorContext.cpp │ ├── StyleSelectorContext.h │ ├── StyleSelectorRule.cpp │ ├── StyleSelectorRule.h │ ├── TextStyle.cpp │ ├── TextStyle.h │ ├── TextStyleBuilder.cpp │ └── TextStyleBuilder.h │ ├── ui │ ├── BalloonPopupButtonClickInfo.cpp │ ├── BalloonPopupButtonClickInfo.h │ ├── BaseMapView.cpp │ ├── BaseMapView.h │ ├── ClickInfo.cpp │ ├── ClickInfo.h │ ├── MapClickInfo.cpp │ ├── MapClickInfo.h │ ├── MapEventListener.h │ ├── MapInteractionInfo.cpp │ ├── MapInteractionInfo.h │ ├── NMLModelLODTreeClickInfo.cpp │ ├── NMLModelLODTreeClickInfo.h │ ├── PopupClickInfo.cpp │ ├── PopupClickInfo.h │ ├── PopupDrawInfo.cpp │ ├── PopupDrawInfo.h │ ├── RasterTileClickInfo.cpp │ ├── RasterTileClickInfo.h │ ├── TouchHandler.cpp │ ├── TouchHandler.h │ ├── UTFGridClickInfo.cpp │ ├── UTFGridClickInfo.h │ ├── VectorElementClickInfo.cpp │ ├── VectorElementClickInfo.h │ ├── VectorElementDragInfo.cpp │ ├── VectorElementDragInfo.h │ ├── VectorTileClickInfo.cpp │ ├── VectorTileClickInfo.h │ └── workers │ │ ├── ClickHandlerWorker.cpp │ │ └── ClickHandlerWorker.h │ ├── utils │ ├── AssetPackage.h │ ├── Const.cpp │ ├── Const.h │ ├── FileUtils.cpp │ ├── FileUtils.h │ ├── GeneralUtils.cpp │ ├── GeneralUtils.h │ ├── GeomUtils.cpp │ ├── GeomUtils.h │ ├── Log.cpp │ ├── Log.h │ ├── LogEventListener.h │ ├── MemoryAssetPackage.cpp │ ├── MemoryAssetPackage.h │ ├── NetworkUtils.cpp │ ├── NetworkUtils.h │ ├── PlatformUtils.cpp │ ├── PlatformUtils.h │ ├── ThreadUtils.h │ ├── TileUtils.cpp │ ├── TileUtils.h │ ├── URLFileLoader.cpp │ ├── URLFileLoader.h │ ├── ZippedAssetPackage.cpp │ └── ZippedAssetPackage.h │ ├── vectorelements │ ├── BalloonPopup.cpp │ ├── BalloonPopup.h │ ├── BalloonPopupButton.cpp │ ├── BalloonPopupButton.h │ ├── BalloonPopupEventListener.h │ ├── Billboard.cpp │ ├── Billboard.h │ ├── CustomPopup.cpp │ ├── CustomPopup.h │ ├── CustomPopupHandler.h │ ├── GeometryCollection.cpp │ ├── GeometryCollection.h │ ├── Label.cpp │ ├── Label.h │ ├── Line.cpp │ ├── Line.h │ ├── Marker.cpp │ ├── Marker.h │ ├── NMLModel.cpp │ ├── NMLModel.h │ ├── Point.cpp │ ├── Point.h │ ├── Polygon.cpp │ ├── Polygon.h │ ├── Polygon3D.cpp │ ├── Polygon3D.h │ ├── Popup.cpp │ ├── Popup.h │ ├── Text.cpp │ ├── Text.h │ ├── VectorElement.cpp │ └── VectorElement.h │ └── vectortiles │ ├── CartoVectorTileDecoder.cpp │ ├── CartoVectorTileDecoder.h │ ├── MBVectorTileDecoder.cpp │ ├── MBVectorTileDecoder.h │ ├── TorqueTileDecoder.cpp │ ├── TorqueTileDecoder.h │ ├── VectorTileDecoder.cpp │ ├── VectorTileDecoder.h │ └── utils │ ├── AssetPackageUpdater.cpp │ ├── AssetPackageUpdater.h │ ├── CartoAssetPackageUpdater.cpp │ ├── CartoAssetPackageUpdater.h │ ├── CartoCSSAssetLoader.cpp │ ├── CartoCSSAssetLoader.h │ ├── MVTGeometryConverter.h │ ├── MVTLogger.h │ ├── MVTValueConverter.h │ ├── VTBitmapLoader.cpp │ └── VTBitmapLoader.h ├── android ├── csharp │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ └── Resource.designer.cs │ └── UI │ │ ├── BaseMapViewRenderer.cs │ │ ├── ConfigChooser.cs │ │ ├── MapRedrawRequestListener.cs │ │ └── MapView.cs ├── java │ └── com │ │ └── carto │ │ ├── ui │ │ ├── ConfigChooser.java │ │ ├── GLTextureView.java │ │ ├── MapRedrawRequestListener.java │ │ ├── MapView.java │ │ ├── MapViewInterface.java │ │ ├── TextureMapRedrawRequestListener.java │ │ └── TextureMapView.java │ │ └── utils │ │ └── DontObfuscate.java ├── modules │ └── utils │ │ ├── AndroidUtils.i │ │ ├── AssetUtils.i │ │ └── BitmapUtils.i └── native │ ├── components │ └── Task.cpp │ ├── graphics │ ├── BitmapCanvasAndroidImpl.cpp │ └── BitmapCanvasAndroidImpl.h │ ├── network │ ├── HTTPClientAndroidImpl.cpp │ └── HTTPClientAndroidImpl.h │ └── utils │ ├── AndroidUtils.cpp │ ├── AndroidUtils.h │ ├── AssetUtils.cpp │ ├── AssetUtils.h │ ├── BitmapUtils.cpp │ ├── BitmapUtils.h │ ├── JNILocalFrame.h │ ├── JNIUniqueGlobalRef.h │ ├── JNIUniqueLocalRef.h │ ├── PlatformUtils.cpp │ └── ThreadUtils.cpp ├── assets ├── carto-watermark.png ├── cartostyles-v2.zip ├── default-background.png ├── default-line.png ├── default-marker.png ├── default-nmlmodel.nml ├── default-point.png ├── default-polygon.png ├── evaluation-watermark.png └── expired-watermark.png ├── docs ├── guides │ ├── 01-getting-started.md │ ├── 02-map-view.md │ ├── 03-layers-and-data-sources.md │ ├── 04-vector-objects-on-map.md │ ├── 05-offline-maps.md │ ├── 06-package-manager.md │ ├── 07-mobile-geocoding.md │ ├── 08-mobile-routing.md │ ├── 09-CARTO-integrations.md │ ├── 10-clustering.md │ ├── 11-ground-overlays.md │ ├── 12-performance-enhancements.md │ └── 13-API-keys.md ├── img │ ├── access_mobile_api_key.jpg │ ├── avatar.gif │ ├── change_app_type.jpg │ ├── delete_application.jpg │ ├── example_settings.jpg │ ├── ground_overlay.jpg │ ├── mapview-offline-layers.png │ ├── mapview-online-layers.png │ ├── mobile-api-overview.png │ ├── new_mobile_app_settings.jpg │ ├── no_registered_apps.jpg │ ├── package_manager_flow.jpg │ ├── platform_appid.jpg │ ├── registered_mobile_app.jpg │ ├── sample_android.jpg │ ├── sample_ios.jpg │ └── xcode_storyboard.jpg ├── reference │ ├── 01-intro.md │ └── 02-contribute.md └── support │ ├── 01-support-options.md │ └── 02-contribute.md ├── dotnet └── csharp │ └── UI │ ├── IMapView.cs │ ├── MapLicenseManagerListener.cs │ └── MapViewBase.cs ├── ios ├── csharp │ ├── Properties │ │ ├── ApiDefinition.cs │ │ └── AssemblyInfo.cs │ └── UI │ │ ├── MapRedrawRequestListener.cs │ │ └── MapView.cs ├── glwrapper │ ├── EGL │ │ └── egl.h │ └── GLES2 │ │ ├── gl2.h │ │ └── gl2ext.h ├── modules │ └── utils │ │ ├── AssetUtils.i │ │ ├── BitmapUtils.i │ │ └── IOSUtils.i ├── native │ ├── components │ │ └── Task.mm │ ├── graphics │ │ ├── BitmapCanvasIOSImpl.h │ │ └── BitmapCanvasIOSImpl.mm │ ├── network │ │ ├── HTTPClientIOSImpl.h │ │ └── HTTPClientIOSImpl.mm │ └── utils │ │ ├── AssetUtils.h │ │ ├── AssetUtils.mm │ │ ├── BitmapUtils.h │ │ ├── BitmapUtils.mm │ │ ├── CFUniquePtr.h │ │ ├── IOSUtils.h │ │ ├── IOSUtils.mm │ │ ├── PlatformUtils.mm │ │ └── ThreadUtils.mm ├── objc │ ├── CartoMobileSDK.h │ ├── ui │ │ ├── MapLicenseManagerListener.h │ │ ├── MapLicenseManagerListener.mm │ │ ├── MapRedrawRequestListener.h │ │ ├── MapRedrawRequestListener.mm │ │ ├── MapView.h │ │ └── MapView.mm │ └── utils │ │ ├── ExceptionWrapper.h │ │ └── ExceptionWrapper.mm └── stdlib │ ├── optional │ └── variant ├── known issues.md ├── scripts ├── android-dev │ ├── .gitignore │ ├── .project │ ├── README.md │ ├── app │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.buildship.core.prefs │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── akylas │ │ │ │ └── cartotest │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── akylas │ │ │ │ │ └── cartotest │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── ui │ │ │ │ │ └── main │ │ │ │ │ ├── MainFragment.java │ │ │ │ │ ├── MainViewModel.java │ │ │ │ │ └── SecondFragment.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── main_activity.xml │ │ │ │ ├── main_fragment.xml │ │ │ │ └── second_fragment.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ │ └── xml │ │ │ │ └── network_security_config.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── akylas │ │ │ └── cartotest │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── carto_mobile_sdk │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── build.gradle │ │ ├── consumer-rules.pro │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── carto │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ └── AndroidManifest.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── carto │ │ │ └── ExampleUnitTest.java │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── android │ ├── build.gradle │ ├── carto-mobile-sdk.pom.template │ ├── publish.gradle │ ├── src │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── R.txt │ ├── stack-trace.sh │ └── version-script ├── build-android.py ├── build-ios.py ├── build-winphone.py ├── build-xamarin.py ├── build │ ├── CMakeLists.txt │ ├── __init__.py │ ├── sdk_build_utils.py │ └── sdk_profiles.json ├── doxygen │ ├── dox │ │ ├── mainpage.dox │ │ └── screenshot_sample.png │ ├── doxygen-objc.conf │ └── nutiteq_transparent.png ├── generate-assets.sh ├── generate-doxygen.sh ├── generate-htmldoc.sh ├── generate-javadoc.sh ├── generate-jazzy.sh ├── htmldoc │ ├── cleanup-htmldoc.py │ └── template.xslt ├── ios-cocoapod │ └── CartoMobileSDK.podspec.template ├── ios-dev │ └── README.md ├── ios-swiftpackage │ └── Package.swift.template ├── ios │ └── Info.plist ├── nuget │ ├── CARTO.png │ ├── CartoMobileSDK.Android.nuspec.template │ ├── CartoMobileSDK.WinPhone.nuspec.template │ └── CartoMobileSDK.iOS.nuspec.template ├── swig │ ├── cartoswig.i │ ├── csharp │ │ ├── director.swg │ │ ├── std_string.i │ │ └── std_string_win32.i │ ├── java │ │ └── director.swg │ └── objc │ │ └── director.swg ├── swigpp-csharp.py ├── swigpp-java.py ├── swigpp-objc.py ├── travis │ ├── build.sh │ └── prerequisites.sh ├── winphone10-vsix │ ├── CartoMobileSDK.WinPhone.VSIX.csproj.template │ ├── License.md │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SDKManifest.xml │ ├── carto128x128.png │ └── source.extension.vsixmanifest ├── winphone10 │ ├── CartoMobileSDK.WinPhone.csproj.template │ ├── carto_mobile_sdk.vcxproj.patch1 │ └── carto_mobile_sdk.vcxproj.patch2 └── xamarin │ ├── CartoMobileSDK.Android.csproj.template │ └── CartoMobileSDK.iOS.csproj.template └── winphone ├── csharp ├── Properties │ ├── AssemblyInfo.cs │ └── CartoMobileSDK.rd.xml ├── System │ ├── ApplicationException.cs │ ├── HandleRef.cs │ └── SystemException.cs └── UI │ ├── MapView.cs │ └── MapViewRedrawRequestListener.cs ├── modules └── utils │ ├── AssetUtils.i │ ├── BitmapUtils.i │ └── EGLContextWrapper.i └── native ├── components └── Task.cpp ├── graphics ├── BitmapCanvasUWPImpl.cpp └── BitmapCanvasUWPImpl.h ├── network ├── HTTPClientWinSockImpl.cpp └── HTTPClientWinSockImpl.h └── utils ├── AssetUtils.cpp ├── AssetUtils.h ├── BitmapUtils.cpp ├── BitmapUtils.h ├── EGLContextWrapper.cpp ├── EGLContextWrapper.h ├── PlatformUtils.cpp └── ThreadUtils.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/.travis.yml -------------------------------------------------------------------------------- /BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/BUILDING.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/NEWS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/README.md -------------------------------------------------------------------------------- /all/modules/components/Layers.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/components/Layers.i -------------------------------------------------------------------------------- /all/modules/components/LicenseManagerListener.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/components/LicenseManagerListener.i -------------------------------------------------------------------------------- /all/modules/components/Options.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/components/Options.i -------------------------------------------------------------------------------- /all/modules/core/Address.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/core/Address.i -------------------------------------------------------------------------------- /all/modules/core/BinaryData.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/core/BinaryData.i -------------------------------------------------------------------------------- /all/modules/core/IntVector.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/core/IntVector.i -------------------------------------------------------------------------------- /all/modules/core/MapBounds.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/core/MapBounds.i -------------------------------------------------------------------------------- /all/modules/core/MapEnvelope.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/core/MapEnvelope.i -------------------------------------------------------------------------------- /all/modules/core/MapPos.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/core/MapPos.i -------------------------------------------------------------------------------- /all/modules/core/MapRange.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/core/MapRange.i -------------------------------------------------------------------------------- /all/modules/core/MapTile.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/core/MapTile.i -------------------------------------------------------------------------------- /all/modules/core/MapVec.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/core/MapVec.i -------------------------------------------------------------------------------- /all/modules/core/ScreenBounds.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/core/ScreenBounds.i -------------------------------------------------------------------------------- /all/modules/core/ScreenPos.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/core/ScreenPos.i -------------------------------------------------------------------------------- /all/modules/core/StringMap.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/core/StringMap.i -------------------------------------------------------------------------------- /all/modules/core/StringVector.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/core/StringVector.i -------------------------------------------------------------------------------- /all/modules/core/Variant.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/core/Variant.i -------------------------------------------------------------------------------- /all/modules/core/VariantArrayBuilder.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/core/VariantArrayBuilder.i -------------------------------------------------------------------------------- /all/modules/core/VariantObjectBuilder.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/core/VariantObjectBuilder.i -------------------------------------------------------------------------------- /all/modules/datasources/AssetTileDataSource.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/datasources/AssetTileDataSource.i -------------------------------------------------------------------------------- /all/modules/datasources/CacheTileDataSource.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/datasources/CacheTileDataSource.i -------------------------------------------------------------------------------- /all/modules/datasources/HTTPTileDataSource.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/datasources/HTTPTileDataSource.i -------------------------------------------------------------------------------- /all/modules/datasources/LocalVectorDataSource.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/datasources/LocalVectorDataSource.i -------------------------------------------------------------------------------- /all/modules/datasources/MBTilesTileDataSource.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/datasources/MBTilesTileDataSource.i -------------------------------------------------------------------------------- /all/modules/datasources/OGRVectorDataBase.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/datasources/OGRVectorDataBase.i -------------------------------------------------------------------------------- /all/modules/datasources/OGRVectorDataSource.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/datasources/OGRVectorDataSource.i -------------------------------------------------------------------------------- /all/modules/datasources/OrderedTileDataSource.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/datasources/OrderedTileDataSource.i -------------------------------------------------------------------------------- /all/modules/datasources/TileDataSource.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/datasources/TileDataSource.i -------------------------------------------------------------------------------- /all/modules/datasources/TileDownloadListener.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/datasources/TileDownloadListener.i -------------------------------------------------------------------------------- /all/modules/datasources/VectorDataSource.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/datasources/VectorDataSource.i -------------------------------------------------------------------------------- /all/modules/datasources/components/TileData.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/datasources/components/TileData.i -------------------------------------------------------------------------------- /all/modules/datasources/components/VectorData.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/datasources/components/VectorData.i -------------------------------------------------------------------------------- /all/modules/geocoding/GeocodingAddress.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/geocoding/GeocodingAddress.i -------------------------------------------------------------------------------- /all/modules/geocoding/GeocodingRequest.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/geocoding/GeocodingRequest.i -------------------------------------------------------------------------------- /all/modules/geocoding/GeocodingResult.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/geocoding/GeocodingResult.i -------------------------------------------------------------------------------- /all/modules/geocoding/GeocodingService.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/geocoding/GeocodingService.i -------------------------------------------------------------------------------- /all/modules/geocoding/ReverseGeocodingRequest.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/geocoding/ReverseGeocodingRequest.i -------------------------------------------------------------------------------- /all/modules/geocoding/ReverseGeocodingService.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/geocoding/ReverseGeocodingService.i -------------------------------------------------------------------------------- /all/modules/geometry/Feature.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/geometry/Feature.i -------------------------------------------------------------------------------- /all/modules/geometry/FeatureBuilder.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/geometry/FeatureBuilder.i -------------------------------------------------------------------------------- /all/modules/geometry/FeatureCollection.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/geometry/FeatureCollection.i -------------------------------------------------------------------------------- /all/modules/geometry/GeoJSONGeometryReader.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/geometry/GeoJSONGeometryReader.i -------------------------------------------------------------------------------- /all/modules/geometry/GeoJSONGeometryWriter.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/geometry/GeoJSONGeometryWriter.i -------------------------------------------------------------------------------- /all/modules/geometry/Geometry.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/geometry/Geometry.i -------------------------------------------------------------------------------- /all/modules/geometry/GeometrySimplifier.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/geometry/GeometrySimplifier.i -------------------------------------------------------------------------------- /all/modules/geometry/LineGeometry.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/geometry/LineGeometry.i -------------------------------------------------------------------------------- /all/modules/geometry/MultiGeometry.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/geometry/MultiGeometry.i -------------------------------------------------------------------------------- /all/modules/geometry/MultiLineGeometry.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/geometry/MultiLineGeometry.i -------------------------------------------------------------------------------- /all/modules/geometry/MultiPointGeometry.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/geometry/MultiPointGeometry.i -------------------------------------------------------------------------------- /all/modules/geometry/MultiPolygonGeometry.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/geometry/MultiPolygonGeometry.i -------------------------------------------------------------------------------- /all/modules/geometry/PointGeometry.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/geometry/PointGeometry.i -------------------------------------------------------------------------------- /all/modules/geometry/PolygonGeometry.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/geometry/PolygonGeometry.i -------------------------------------------------------------------------------- /all/modules/geometry/VectorTileFeature.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/geometry/VectorTileFeature.i -------------------------------------------------------------------------------- /all/modules/geometry/VectorTileFeatureBuilder.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/geometry/VectorTileFeatureBuilder.i -------------------------------------------------------------------------------- /all/modules/geometry/WKBGeometryReader.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/geometry/WKBGeometryReader.i -------------------------------------------------------------------------------- /all/modules/geometry/WKBGeometryWriter.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/geometry/WKBGeometryWriter.i -------------------------------------------------------------------------------- /all/modules/geometry/WKTGeometryReader.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/geometry/WKTGeometryReader.i -------------------------------------------------------------------------------- /all/modules/geometry/WKTGeometryWriter.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/geometry/WKTGeometryWriter.i -------------------------------------------------------------------------------- /all/modules/graphics/Bitmap.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/graphics/Bitmap.i -------------------------------------------------------------------------------- /all/modules/graphics/Color.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/graphics/Color.i -------------------------------------------------------------------------------- /all/modules/graphics/ViewState.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/graphics/ViewState.i -------------------------------------------------------------------------------- /all/modules/layers/CartoOnlineRasterTileLayer.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/layers/CartoOnlineRasterTileLayer.i -------------------------------------------------------------------------------- /all/modules/layers/CartoOnlineVectorTileLayer.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/layers/CartoOnlineVectorTileLayer.i -------------------------------------------------------------------------------- /all/modules/layers/CartoVectorTileLayer.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/layers/CartoVectorTileLayer.i -------------------------------------------------------------------------------- /all/modules/layers/ClusterElementBuilder.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/layers/ClusterElementBuilder.i -------------------------------------------------------------------------------- /all/modules/layers/ClusteredVectorLayer.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/layers/ClusteredVectorLayer.i -------------------------------------------------------------------------------- /all/modules/layers/EditableVectorLayer.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/layers/EditableVectorLayer.i -------------------------------------------------------------------------------- /all/modules/layers/HillshadeRasterTileLayer.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/layers/HillshadeRasterTileLayer.i -------------------------------------------------------------------------------- /all/modules/layers/Layer.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/layers/Layer.i -------------------------------------------------------------------------------- /all/modules/layers/NMLModelLODTreeLayer.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/layers/NMLModelLODTreeLayer.i -------------------------------------------------------------------------------- /all/modules/layers/RasterTileEventListener.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/layers/RasterTileEventListener.i -------------------------------------------------------------------------------- /all/modules/layers/RasterTileLayer.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/layers/RasterTileLayer.i -------------------------------------------------------------------------------- /all/modules/layers/SolidLayer.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/layers/SolidLayer.i -------------------------------------------------------------------------------- /all/modules/layers/TileLayer.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/layers/TileLayer.i -------------------------------------------------------------------------------- /all/modules/layers/TileLoadListener.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/layers/TileLoadListener.i -------------------------------------------------------------------------------- /all/modules/layers/TorqueTileLayer.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/layers/TorqueTileLayer.i -------------------------------------------------------------------------------- /all/modules/layers/UTFGridEventListener.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/layers/UTFGridEventListener.i -------------------------------------------------------------------------------- /all/modules/layers/VectorEditEventListener.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/layers/VectorEditEventListener.i -------------------------------------------------------------------------------- /all/modules/layers/VectorElementEventListener.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/layers/VectorElementEventListener.i -------------------------------------------------------------------------------- /all/modules/layers/VectorLayer.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/layers/VectorLayer.i -------------------------------------------------------------------------------- /all/modules/layers/VectorTileEventListener.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/layers/VectorTileEventListener.i -------------------------------------------------------------------------------- /all/modules/layers/VectorTileLayer.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/layers/VectorTileLayer.i -------------------------------------------------------------------------------- /all/modules/packagemanager/PackageInfo.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/packagemanager/PackageInfo.i -------------------------------------------------------------------------------- /all/modules/packagemanager/PackageManager.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/packagemanager/PackageManager.i -------------------------------------------------------------------------------- /all/modules/packagemanager/PackageMetaInfo.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/packagemanager/PackageMetaInfo.i -------------------------------------------------------------------------------- /all/modules/packagemanager/PackageStatus.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/packagemanager/PackageStatus.i -------------------------------------------------------------------------------- /all/modules/packagemanager/PackageTileMask.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/packagemanager/PackageTileMask.i -------------------------------------------------------------------------------- /all/modules/projections/EPSG3857.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/projections/EPSG3857.i -------------------------------------------------------------------------------- /all/modules/projections/EPSG4326.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/projections/EPSG4326.i -------------------------------------------------------------------------------- /all/modules/projections/Projection.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/projections/Projection.i -------------------------------------------------------------------------------- /all/modules/renderers/MapRenderer.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/renderers/MapRenderer.i -------------------------------------------------------------------------------- /all/modules/renderers/MapRendererListener.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/renderers/MapRendererListener.i -------------------------------------------------------------------------------- /all/modules/renderers/RedrawRequestListener.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/renderers/RedrawRequestListener.i -------------------------------------------------------------------------------- /all/modules/renderers/RendererCaptureListener.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/renderers/RendererCaptureListener.i -------------------------------------------------------------------------------- /all/modules/renderers/components/CullState.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/renderers/components/CullState.i -------------------------------------------------------------------------------- /all/modules/routing/CartoOnlineRoutingService.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/routing/CartoOnlineRoutingService.i -------------------------------------------------------------------------------- /all/modules/routing/OSRMOfflineRoutingService.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/routing/OSRMOfflineRoutingService.i -------------------------------------------------------------------------------- /all/modules/routing/RouteMatchingEdge.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/routing/RouteMatchingEdge.i -------------------------------------------------------------------------------- /all/modules/routing/RouteMatchingPoint.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/routing/RouteMatchingPoint.i -------------------------------------------------------------------------------- /all/modules/routing/RouteMatchingRequest.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/routing/RouteMatchingRequest.i -------------------------------------------------------------------------------- /all/modules/routing/RouteMatchingResult.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/routing/RouteMatchingResult.i -------------------------------------------------------------------------------- /all/modules/routing/RoutingInstruction.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/routing/RoutingInstruction.i -------------------------------------------------------------------------------- /all/modules/routing/RoutingRequest.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/routing/RoutingRequest.i -------------------------------------------------------------------------------- /all/modules/routing/RoutingResult.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/routing/RoutingResult.i -------------------------------------------------------------------------------- /all/modules/routing/RoutingService.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/routing/RoutingService.i -------------------------------------------------------------------------------- /all/modules/routing/SGREOfflineRoutingService.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/routing/SGREOfflineRoutingService.i -------------------------------------------------------------------------------- /all/modules/search/SearchRequest.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/search/SearchRequest.i -------------------------------------------------------------------------------- /all/modules/search/VectorElementSearchService.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/search/VectorElementSearchService.i -------------------------------------------------------------------------------- /all/modules/search/VectorTileSearchService.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/search/VectorTileSearchService.i -------------------------------------------------------------------------------- /all/modules/services/CartoMapsService.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/services/CartoMapsService.i -------------------------------------------------------------------------------- /all/modules/services/CartoSQLService.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/services/CartoSQLService.i -------------------------------------------------------------------------------- /all/modules/styles/AnimationStyle.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/styles/AnimationStyle.i -------------------------------------------------------------------------------- /all/modules/styles/AnimationStyleBuilder.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/styles/AnimationStyleBuilder.i -------------------------------------------------------------------------------- /all/modules/styles/BalloonPopupButtonStyle.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/styles/BalloonPopupButtonStyle.i -------------------------------------------------------------------------------- /all/modules/styles/BalloonPopupStyle.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/styles/BalloonPopupStyle.i -------------------------------------------------------------------------------- /all/modules/styles/BalloonPopupStyleBuilder.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/styles/BalloonPopupStyleBuilder.i -------------------------------------------------------------------------------- /all/modules/styles/BillboardStyle.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/styles/BillboardStyle.i -------------------------------------------------------------------------------- /all/modules/styles/BillboardStyleBuilder.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/styles/BillboardStyleBuilder.i -------------------------------------------------------------------------------- /all/modules/styles/CartoCSSStyleSet.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/styles/CartoCSSStyleSet.i -------------------------------------------------------------------------------- /all/modules/styles/CompiledStyleSet.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/styles/CompiledStyleSet.i -------------------------------------------------------------------------------- /all/modules/styles/GeometryCollectionStyle.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/styles/GeometryCollectionStyle.i -------------------------------------------------------------------------------- /all/modules/styles/LabelStyle.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/styles/LabelStyle.i -------------------------------------------------------------------------------- /all/modules/styles/LabelStyleBuilder.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/styles/LabelStyleBuilder.i -------------------------------------------------------------------------------- /all/modules/styles/LineStyle.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/styles/LineStyle.i -------------------------------------------------------------------------------- /all/modules/styles/LineStyleBuilder.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/styles/LineStyleBuilder.i -------------------------------------------------------------------------------- /all/modules/styles/MarkerStyle.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/styles/MarkerStyle.i -------------------------------------------------------------------------------- /all/modules/styles/MarkerStyleBuilder.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/styles/MarkerStyleBuilder.i -------------------------------------------------------------------------------- /all/modules/styles/NMLModelStyle.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/styles/NMLModelStyle.i -------------------------------------------------------------------------------- /all/modules/styles/NMLModelStyleBuilder.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/styles/NMLModelStyleBuilder.i -------------------------------------------------------------------------------- /all/modules/styles/PointStyle.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/styles/PointStyle.i -------------------------------------------------------------------------------- /all/modules/styles/PointStyleBuilder.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/styles/PointStyleBuilder.i -------------------------------------------------------------------------------- /all/modules/styles/Polygon3DStyle.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/styles/Polygon3DStyle.i -------------------------------------------------------------------------------- /all/modules/styles/Polygon3DStyleBuilder.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/styles/Polygon3DStyleBuilder.i -------------------------------------------------------------------------------- /all/modules/styles/PolygonStyle.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/styles/PolygonStyle.i -------------------------------------------------------------------------------- /all/modules/styles/PolygonStyleBuilder.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/styles/PolygonStyleBuilder.i -------------------------------------------------------------------------------- /all/modules/styles/PopupStyle.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/styles/PopupStyle.i -------------------------------------------------------------------------------- /all/modules/styles/PopupStyleBuilder.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/styles/PopupStyleBuilder.i -------------------------------------------------------------------------------- /all/modules/styles/Style.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/styles/Style.i -------------------------------------------------------------------------------- /all/modules/styles/StyleBuilder.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/styles/StyleBuilder.i -------------------------------------------------------------------------------- /all/modules/styles/StyleSelector.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/styles/StyleSelector.i -------------------------------------------------------------------------------- /all/modules/styles/StyleSelectorBuilder.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/styles/StyleSelectorBuilder.i -------------------------------------------------------------------------------- /all/modules/styles/TextStyle.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/styles/TextStyle.i -------------------------------------------------------------------------------- /all/modules/styles/TextStyleBuilder.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/styles/TextStyleBuilder.i -------------------------------------------------------------------------------- /all/modules/ui/BalloonPopupButtonClickInfo.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/ui/BalloonPopupButtonClickInfo.i -------------------------------------------------------------------------------- /all/modules/ui/BaseMapView.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/ui/BaseMapView.i -------------------------------------------------------------------------------- /all/modules/ui/ClickInfo.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/ui/ClickInfo.i -------------------------------------------------------------------------------- /all/modules/ui/MapClickInfo.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/ui/MapClickInfo.i -------------------------------------------------------------------------------- /all/modules/ui/MapEventListener.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/ui/MapEventListener.i -------------------------------------------------------------------------------- /all/modules/ui/MapInteractionInfo.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/ui/MapInteractionInfo.i -------------------------------------------------------------------------------- /all/modules/ui/NMLModelLODTreeClickInfo.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/ui/NMLModelLODTreeClickInfo.i -------------------------------------------------------------------------------- /all/modules/ui/PopupClickInfo.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/ui/PopupClickInfo.i -------------------------------------------------------------------------------- /all/modules/ui/PopupDrawInfo.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/ui/PopupDrawInfo.i -------------------------------------------------------------------------------- /all/modules/ui/RasterTileClickInfo.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/ui/RasterTileClickInfo.i -------------------------------------------------------------------------------- /all/modules/ui/UTFGridClickInfo.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/ui/UTFGridClickInfo.i -------------------------------------------------------------------------------- /all/modules/ui/VectorElementClickInfo.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/ui/VectorElementClickInfo.i -------------------------------------------------------------------------------- /all/modules/ui/VectorElementDragInfo.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/ui/VectorElementDragInfo.i -------------------------------------------------------------------------------- /all/modules/ui/VectorTileClickInfo.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/ui/VectorTileClickInfo.i -------------------------------------------------------------------------------- /all/modules/utils/AssetPackage.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/utils/AssetPackage.i -------------------------------------------------------------------------------- /all/modules/utils/Log.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/utils/Log.i -------------------------------------------------------------------------------- /all/modules/utils/LogEventListener.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/utils/LogEventListener.i -------------------------------------------------------------------------------- /all/modules/utils/TileUtils.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/utils/TileUtils.i -------------------------------------------------------------------------------- /all/modules/utils/ZippedAssetPackage.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/utils/ZippedAssetPackage.i -------------------------------------------------------------------------------- /all/modules/vectorelements/BalloonPopup.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/vectorelements/BalloonPopup.i -------------------------------------------------------------------------------- /all/modules/vectorelements/BalloonPopupButton.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/vectorelements/BalloonPopupButton.i -------------------------------------------------------------------------------- /all/modules/vectorelements/Billboard.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/vectorelements/Billboard.i -------------------------------------------------------------------------------- /all/modules/vectorelements/CustomPopup.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/vectorelements/CustomPopup.i -------------------------------------------------------------------------------- /all/modules/vectorelements/CustomPopupHandler.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/vectorelements/CustomPopupHandler.i -------------------------------------------------------------------------------- /all/modules/vectorelements/GeometryCollection.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/vectorelements/GeometryCollection.i -------------------------------------------------------------------------------- /all/modules/vectorelements/Label.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/vectorelements/Label.i -------------------------------------------------------------------------------- /all/modules/vectorelements/Line.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/vectorelements/Line.i -------------------------------------------------------------------------------- /all/modules/vectorelements/Marker.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/vectorelements/Marker.i -------------------------------------------------------------------------------- /all/modules/vectorelements/NMLModel.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/vectorelements/NMLModel.i -------------------------------------------------------------------------------- /all/modules/vectorelements/Point.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/vectorelements/Point.i -------------------------------------------------------------------------------- /all/modules/vectorelements/Polygon.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/vectorelements/Polygon.i -------------------------------------------------------------------------------- /all/modules/vectorelements/Polygon3D.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/vectorelements/Polygon3D.i -------------------------------------------------------------------------------- /all/modules/vectorelements/Popup.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/vectorelements/Popup.i -------------------------------------------------------------------------------- /all/modules/vectorelements/Text.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/vectorelements/Text.i -------------------------------------------------------------------------------- /all/modules/vectorelements/VectorElement.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/vectorelements/VectorElement.i -------------------------------------------------------------------------------- /all/modules/vectortiles/MBVectorTileDecoder.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/vectortiles/MBVectorTileDecoder.i -------------------------------------------------------------------------------- /all/modules/vectortiles/TorqueTileDecoder.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/vectortiles/TorqueTileDecoder.i -------------------------------------------------------------------------------- /all/modules/vectortiles/VectorTileDecoder.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/modules/vectortiles/VectorTileDecoder.i -------------------------------------------------------------------------------- /all/native/assets/CartoStylesV2ZIP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/assets/CartoStylesV2ZIP.h -------------------------------------------------------------------------------- /all/native/assets/CartoWatermarkPNG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/assets/CartoWatermarkPNG.h -------------------------------------------------------------------------------- /all/native/assets/DefaultBackgroundPNG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/assets/DefaultBackgroundPNG.h -------------------------------------------------------------------------------- /all/native/assets/DefaultLinePNG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/assets/DefaultLinePNG.h -------------------------------------------------------------------------------- /all/native/assets/DefaultMarkerPNG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/assets/DefaultMarkerPNG.h -------------------------------------------------------------------------------- /all/native/assets/DefaultNMLModelNML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/assets/DefaultNMLModelNML.h -------------------------------------------------------------------------------- /all/native/assets/DefaultPointPNG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/assets/DefaultPointPNG.h -------------------------------------------------------------------------------- /all/native/assets/DefaultPolygon3DPNG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/assets/DefaultPolygon3DPNG.h -------------------------------------------------------------------------------- /all/native/assets/DefaultPolygonPNG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/assets/DefaultPolygonPNG.h -------------------------------------------------------------------------------- /all/native/assets/EvaluationWatermarkPNG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/assets/EvaluationWatermarkPNG.h -------------------------------------------------------------------------------- /all/native/assets/ExpiredWatermarkPNG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/assets/ExpiredWatermarkPNG.h -------------------------------------------------------------------------------- /all/native/assets/ValhallaDefaultConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/assets/ValhallaDefaultConfig.h -------------------------------------------------------------------------------- /all/native/assets/gdal/coordinate_axis_csv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/assets/gdal/coordinate_axis_csv.h -------------------------------------------------------------------------------- /all/native/assets/gdal/datum_shift_csv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/assets/gdal/datum_shift_csv.h -------------------------------------------------------------------------------- /all/native/assets/gdal/ellipsoid_csv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/assets/gdal/ellipsoid_csv.h -------------------------------------------------------------------------------- /all/native/assets/gdal/gcs_csv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/assets/gdal/gcs_csv.h -------------------------------------------------------------------------------- /all/native/assets/gdal/gcs_override_csv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/assets/gdal/gcs_override_csv.h -------------------------------------------------------------------------------- /all/native/assets/gdal/gdal_datum_csv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/assets/gdal/gdal_datum_csv.h -------------------------------------------------------------------------------- /all/native/assets/gdal/pcs_csv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/assets/gdal/pcs_csv.h -------------------------------------------------------------------------------- /all/native/assets/gdal/pcs_override_csv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/assets/gdal/pcs_override_csv.h -------------------------------------------------------------------------------- /all/native/assets/gdal/projop_wparm_csv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/assets/gdal/projop_wparm_csv.h -------------------------------------------------------------------------------- /all/native/assets/gdal/unit_of_measure_csv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/assets/gdal/unit_of_measure_csv.h -------------------------------------------------------------------------------- /all/native/components/CancelableTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/components/CancelableTask.h -------------------------------------------------------------------------------- /all/native/components/CancelableThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/components/CancelableThreadPool.cpp -------------------------------------------------------------------------------- /all/native/components/CancelableThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/components/CancelableThreadPool.h -------------------------------------------------------------------------------- /all/native/components/ClassRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/components/ClassRegistry.cpp -------------------------------------------------------------------------------- /all/native/components/ClassRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/components/ClassRegistry.h -------------------------------------------------------------------------------- /all/native/components/Director.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/components/Director.h -------------------------------------------------------------------------------- /all/native/components/DirectorPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/components/DirectorPtr.h -------------------------------------------------------------------------------- /all/native/components/Exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/components/Exceptions.h -------------------------------------------------------------------------------- /all/native/components/Layers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/components/Layers.cpp -------------------------------------------------------------------------------- /all/native/components/Layers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/components/Layers.h -------------------------------------------------------------------------------- /all/native/components/LicenseManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/components/LicenseManager.cpp -------------------------------------------------------------------------------- /all/native/components/LicenseManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/components/LicenseManager.h -------------------------------------------------------------------------------- /all/native/components/LicenseManagerListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/components/LicenseManagerListener.h -------------------------------------------------------------------------------- /all/native/components/Options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/components/Options.cpp -------------------------------------------------------------------------------- /all/native/components/Options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/components/Options.h -------------------------------------------------------------------------------- /all/native/components/Task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/components/Task.h -------------------------------------------------------------------------------- /all/native/components/ThreadWorker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/components/ThreadWorker.h -------------------------------------------------------------------------------- /all/native/core/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/core/Address.cpp -------------------------------------------------------------------------------- /all/native/core/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/core/Address.h -------------------------------------------------------------------------------- /all/native/core/BinaryData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/core/BinaryData.cpp -------------------------------------------------------------------------------- /all/native/core/BinaryData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/core/BinaryData.h -------------------------------------------------------------------------------- /all/native/core/MapBounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/core/MapBounds.cpp -------------------------------------------------------------------------------- /all/native/core/MapBounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/core/MapBounds.h -------------------------------------------------------------------------------- /all/native/core/MapEnvelope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/core/MapEnvelope.cpp -------------------------------------------------------------------------------- /all/native/core/MapEnvelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/core/MapEnvelope.h -------------------------------------------------------------------------------- /all/native/core/MapPos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/core/MapPos.cpp -------------------------------------------------------------------------------- /all/native/core/MapPos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/core/MapPos.h -------------------------------------------------------------------------------- /all/native/core/MapRange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/core/MapRange.cpp -------------------------------------------------------------------------------- /all/native/core/MapRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/core/MapRange.h -------------------------------------------------------------------------------- /all/native/core/MapTile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/core/MapTile.cpp -------------------------------------------------------------------------------- /all/native/core/MapTile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/core/MapTile.h -------------------------------------------------------------------------------- /all/native/core/MapVec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/core/MapVec.cpp -------------------------------------------------------------------------------- /all/native/core/MapVec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/core/MapVec.h -------------------------------------------------------------------------------- /all/native/core/ScreenBounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/core/ScreenBounds.cpp -------------------------------------------------------------------------------- /all/native/core/ScreenBounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/core/ScreenBounds.h -------------------------------------------------------------------------------- /all/native/core/ScreenPos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/core/ScreenPos.cpp -------------------------------------------------------------------------------- /all/native/core/ScreenPos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/core/ScreenPos.h -------------------------------------------------------------------------------- /all/native/core/Variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/core/Variant.cpp -------------------------------------------------------------------------------- /all/native/core/Variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/core/Variant.h -------------------------------------------------------------------------------- /all/native/core/VariantArrayBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/core/VariantArrayBuilder.cpp -------------------------------------------------------------------------------- /all/native/core/VariantArrayBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/core/VariantArrayBuilder.h -------------------------------------------------------------------------------- /all/native/core/VariantObjectBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/core/VariantObjectBuilder.cpp -------------------------------------------------------------------------------- /all/native/core/VariantObjectBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/core/VariantObjectBuilder.h -------------------------------------------------------------------------------- /all/native/datasources/AssetTileDataSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/datasources/AssetTileDataSource.cpp -------------------------------------------------------------------------------- /all/native/datasources/AssetTileDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/datasources/AssetTileDataSource.h -------------------------------------------------------------------------------- /all/native/datasources/CacheTileDataSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/datasources/CacheTileDataSource.cpp -------------------------------------------------------------------------------- /all/native/datasources/CacheTileDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/datasources/CacheTileDataSource.h -------------------------------------------------------------------------------- /all/native/datasources/CombinedTileDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/datasources/CombinedTileDataSource.h -------------------------------------------------------------------------------- /all/native/datasources/HTTPTileDataSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/datasources/HTTPTileDataSource.cpp -------------------------------------------------------------------------------- /all/native/datasources/HTTPTileDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/datasources/HTTPTileDataSource.h -------------------------------------------------------------------------------- /all/native/datasources/LocalVectorDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/datasources/LocalVectorDataSource.h -------------------------------------------------------------------------------- /all/native/datasources/MBTilesTileDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/datasources/MBTilesTileDataSource.h -------------------------------------------------------------------------------- /all/native/datasources/OGRVectorDataBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/datasources/OGRVectorDataBase.cpp -------------------------------------------------------------------------------- /all/native/datasources/OGRVectorDataBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/datasources/OGRVectorDataBase.h -------------------------------------------------------------------------------- /all/native/datasources/OGRVectorDataSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/datasources/OGRVectorDataSource.cpp -------------------------------------------------------------------------------- /all/native/datasources/OGRVectorDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/datasources/OGRVectorDataSource.h -------------------------------------------------------------------------------- /all/native/datasources/OrderedTileDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/datasources/OrderedTileDataSource.h -------------------------------------------------------------------------------- /all/native/datasources/TileDataSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/datasources/TileDataSource.cpp -------------------------------------------------------------------------------- /all/native/datasources/TileDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/datasources/TileDataSource.h -------------------------------------------------------------------------------- /all/native/datasources/TileDownloadListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/datasources/TileDownloadListener.h -------------------------------------------------------------------------------- /all/native/datasources/VectorDataSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/datasources/VectorDataSource.cpp -------------------------------------------------------------------------------- /all/native/datasources/VectorDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/datasources/VectorDataSource.h -------------------------------------------------------------------------------- /all/native/datasources/components/TileData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/datasources/components/TileData.cpp -------------------------------------------------------------------------------- /all/native/datasources/components/TileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/datasources/components/TileData.h -------------------------------------------------------------------------------- /all/native/datasources/components/VectorData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/datasources/components/VectorData.h -------------------------------------------------------------------------------- /all/native/geocoding/GeocodingAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geocoding/GeocodingAddress.cpp -------------------------------------------------------------------------------- /all/native/geocoding/GeocodingAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geocoding/GeocodingAddress.h -------------------------------------------------------------------------------- /all/native/geocoding/GeocodingRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geocoding/GeocodingRequest.cpp -------------------------------------------------------------------------------- /all/native/geocoding/GeocodingRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geocoding/GeocodingRequest.h -------------------------------------------------------------------------------- /all/native/geocoding/GeocodingResult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geocoding/GeocodingResult.cpp -------------------------------------------------------------------------------- /all/native/geocoding/GeocodingResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geocoding/GeocodingResult.h -------------------------------------------------------------------------------- /all/native/geocoding/GeocodingService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geocoding/GeocodingService.cpp -------------------------------------------------------------------------------- /all/native/geocoding/GeocodingService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geocoding/GeocodingService.h -------------------------------------------------------------------------------- /all/native/geocoding/ReverseGeocodingRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geocoding/ReverseGeocodingRequest.h -------------------------------------------------------------------------------- /all/native/geocoding/ReverseGeocodingService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geocoding/ReverseGeocodingService.h -------------------------------------------------------------------------------- /all/native/geometry/Feature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/Feature.cpp -------------------------------------------------------------------------------- /all/native/geometry/Feature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/Feature.h -------------------------------------------------------------------------------- /all/native/geometry/FeatureBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/FeatureBuilder.cpp -------------------------------------------------------------------------------- /all/native/geometry/FeatureBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/FeatureBuilder.h -------------------------------------------------------------------------------- /all/native/geometry/FeatureCollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/FeatureCollection.cpp -------------------------------------------------------------------------------- /all/native/geometry/FeatureCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/FeatureCollection.h -------------------------------------------------------------------------------- /all/native/geometry/GeoJSONGeometryReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/GeoJSONGeometryReader.cpp -------------------------------------------------------------------------------- /all/native/geometry/GeoJSONGeometryReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/GeoJSONGeometryReader.h -------------------------------------------------------------------------------- /all/native/geometry/GeoJSONGeometryWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/GeoJSONGeometryWriter.cpp -------------------------------------------------------------------------------- /all/native/geometry/GeoJSONGeometryWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/GeoJSONGeometryWriter.h -------------------------------------------------------------------------------- /all/native/geometry/Geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/Geometry.h -------------------------------------------------------------------------------- /all/native/geometry/GeometrySimplifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/GeometrySimplifier.h -------------------------------------------------------------------------------- /all/native/geometry/LineGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/LineGeometry.cpp -------------------------------------------------------------------------------- /all/native/geometry/LineGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/LineGeometry.h -------------------------------------------------------------------------------- /all/native/geometry/MultiGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/MultiGeometry.cpp -------------------------------------------------------------------------------- /all/native/geometry/MultiGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/MultiGeometry.h -------------------------------------------------------------------------------- /all/native/geometry/MultiLineGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/MultiLineGeometry.cpp -------------------------------------------------------------------------------- /all/native/geometry/MultiLineGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/MultiLineGeometry.h -------------------------------------------------------------------------------- /all/native/geometry/MultiPointGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/MultiPointGeometry.cpp -------------------------------------------------------------------------------- /all/native/geometry/MultiPointGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/MultiPointGeometry.h -------------------------------------------------------------------------------- /all/native/geometry/MultiPolygonGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/MultiPolygonGeometry.cpp -------------------------------------------------------------------------------- /all/native/geometry/MultiPolygonGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/MultiPolygonGeometry.h -------------------------------------------------------------------------------- /all/native/geometry/PointGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/PointGeometry.cpp -------------------------------------------------------------------------------- /all/native/geometry/PointGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/PointGeometry.h -------------------------------------------------------------------------------- /all/native/geometry/PolygonGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/PolygonGeometry.cpp -------------------------------------------------------------------------------- /all/native/geometry/PolygonGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/PolygonGeometry.h -------------------------------------------------------------------------------- /all/native/geometry/VectorTileFeature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/VectorTileFeature.cpp -------------------------------------------------------------------------------- /all/native/geometry/VectorTileFeature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/VectorTileFeature.h -------------------------------------------------------------------------------- /all/native/geometry/VectorTileFeatureBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/VectorTileFeatureBuilder.h -------------------------------------------------------------------------------- /all/native/geometry/WKBGeometryReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/WKBGeometryReader.cpp -------------------------------------------------------------------------------- /all/native/geometry/WKBGeometryReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/WKBGeometryReader.h -------------------------------------------------------------------------------- /all/native/geometry/WKBGeometryWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/WKBGeometryWriter.cpp -------------------------------------------------------------------------------- /all/native/geometry/WKBGeometryWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/WKBGeometryWriter.h -------------------------------------------------------------------------------- /all/native/geometry/WKTGeometryReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/WKTGeometryReader.cpp -------------------------------------------------------------------------------- /all/native/geometry/WKTGeometryReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/WKTGeometryReader.h -------------------------------------------------------------------------------- /all/native/geometry/WKTGeometryWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/WKTGeometryWriter.cpp -------------------------------------------------------------------------------- /all/native/geometry/WKTGeometryWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/WKTGeometryWriter.h -------------------------------------------------------------------------------- /all/native/geometry/utils/KDTreeSpatialIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/utils/KDTreeSpatialIndex.h -------------------------------------------------------------------------------- /all/native/geometry/utils/NullSpatialIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/utils/NullSpatialIndex.h -------------------------------------------------------------------------------- /all/native/geometry/utils/SpatialIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/utils/SpatialIndex.h -------------------------------------------------------------------------------- /all/native/geometry/utils/WKBGeometryEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/utils/WKBGeometryEnums.h -------------------------------------------------------------------------------- /all/native/geometry/utils/WKTGeometryParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/geometry/utils/WKTGeometryParser.h -------------------------------------------------------------------------------- /all/native/graphics/Bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/graphics/Bitmap.cpp -------------------------------------------------------------------------------- /all/native/graphics/Bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/graphics/Bitmap.h -------------------------------------------------------------------------------- /all/native/graphics/BitmapCanvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/graphics/BitmapCanvas.cpp -------------------------------------------------------------------------------- /all/native/graphics/BitmapCanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/graphics/BitmapCanvas.h -------------------------------------------------------------------------------- /all/native/graphics/Color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/graphics/Color.cpp -------------------------------------------------------------------------------- /all/native/graphics/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/graphics/Color.h -------------------------------------------------------------------------------- /all/native/graphics/ViewState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/graphics/ViewState.cpp -------------------------------------------------------------------------------- /all/native/graphics/ViewState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/graphics/ViewState.h -------------------------------------------------------------------------------- /all/native/graphics/utils/BitmapFilterTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/graphics/utils/BitmapFilterTable.cpp -------------------------------------------------------------------------------- /all/native/graphics/utils/BitmapFilterTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/graphics/utils/BitmapFilterTable.h -------------------------------------------------------------------------------- /all/native/graphics/utils/SkyBitmapGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/graphics/utils/SkyBitmapGenerator.h -------------------------------------------------------------------------------- /all/native/layers/CartoOfflineVectorTileLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/layers/CartoOfflineVectorTileLayer.h -------------------------------------------------------------------------------- /all/native/layers/CartoOnlineRasterTileLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/layers/CartoOnlineRasterTileLayer.h -------------------------------------------------------------------------------- /all/native/layers/CartoOnlineVectorTileLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/layers/CartoOnlineVectorTileLayer.h -------------------------------------------------------------------------------- /all/native/layers/CartoVectorTileLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/layers/CartoVectorTileLayer.cpp -------------------------------------------------------------------------------- /all/native/layers/CartoVectorTileLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/layers/CartoVectorTileLayer.h -------------------------------------------------------------------------------- /all/native/layers/ClusterElementBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/layers/ClusterElementBuilder.h -------------------------------------------------------------------------------- /all/native/layers/ClusteredVectorLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/layers/ClusteredVectorLayer.cpp -------------------------------------------------------------------------------- /all/native/layers/ClusteredVectorLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/layers/ClusteredVectorLayer.h -------------------------------------------------------------------------------- /all/native/layers/EditableVectorLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/layers/EditableVectorLayer.cpp -------------------------------------------------------------------------------- /all/native/layers/EditableVectorLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/layers/EditableVectorLayer.h -------------------------------------------------------------------------------- /all/native/layers/HillshadeRasterTileLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/layers/HillshadeRasterTileLayer.cpp -------------------------------------------------------------------------------- /all/native/layers/HillshadeRasterTileLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/layers/HillshadeRasterTileLayer.h -------------------------------------------------------------------------------- /all/native/layers/Layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/layers/Layer.cpp -------------------------------------------------------------------------------- /all/native/layers/Layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/layers/Layer.h -------------------------------------------------------------------------------- /all/native/layers/NMLModelLODTreeLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/layers/NMLModelLODTreeLayer.cpp -------------------------------------------------------------------------------- /all/native/layers/NMLModelLODTreeLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/layers/NMLModelLODTreeLayer.h -------------------------------------------------------------------------------- /all/native/layers/RasterTileEventListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/layers/RasterTileEventListener.h -------------------------------------------------------------------------------- /all/native/layers/RasterTileLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/layers/RasterTileLayer.cpp -------------------------------------------------------------------------------- /all/native/layers/RasterTileLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/layers/RasterTileLayer.h -------------------------------------------------------------------------------- /all/native/layers/SolidLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/layers/SolidLayer.cpp -------------------------------------------------------------------------------- /all/native/layers/SolidLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/layers/SolidLayer.h -------------------------------------------------------------------------------- /all/native/layers/TileLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/layers/TileLayer.cpp -------------------------------------------------------------------------------- /all/native/layers/TileLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/layers/TileLayer.h -------------------------------------------------------------------------------- /all/native/layers/TileLoadListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/layers/TileLoadListener.h -------------------------------------------------------------------------------- /all/native/layers/TorqueTileLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/layers/TorqueTileLayer.cpp -------------------------------------------------------------------------------- /all/native/layers/TorqueTileLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/layers/TorqueTileLayer.h -------------------------------------------------------------------------------- /all/native/layers/UTFGridEventListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/layers/UTFGridEventListener.h -------------------------------------------------------------------------------- /all/native/layers/VectorEditEventListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/layers/VectorEditEventListener.h -------------------------------------------------------------------------------- /all/native/layers/VectorElementEventListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/layers/VectorElementEventListener.h -------------------------------------------------------------------------------- /all/native/layers/VectorLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/layers/VectorLayer.cpp -------------------------------------------------------------------------------- /all/native/layers/VectorLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/layers/VectorLayer.h -------------------------------------------------------------------------------- /all/native/layers/VectorTileEventListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/layers/VectorTileEventListener.h -------------------------------------------------------------------------------- /all/native/layers/VectorTileLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/layers/VectorTileLayer.cpp -------------------------------------------------------------------------------- /all/native/layers/VectorTileLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/layers/VectorTileLayer.h -------------------------------------------------------------------------------- /all/native/layers/components/UTFGridTile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/layers/components/UTFGridTile.cpp -------------------------------------------------------------------------------- /all/native/layers/components/UTFGridTile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/layers/components/UTFGridTile.h -------------------------------------------------------------------------------- /all/native/network/HTTPClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/network/HTTPClient.cpp -------------------------------------------------------------------------------- /all/native/network/HTTPClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/network/HTTPClient.h -------------------------------------------------------------------------------- /all/native/network/HTTPClientPionImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/network/HTTPClientPionImpl.cpp -------------------------------------------------------------------------------- /all/native/network/HTTPClientPionImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/network/HTTPClientPionImpl.h -------------------------------------------------------------------------------- /all/native/packagemanager/CartoPackageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/packagemanager/CartoPackageManager.h -------------------------------------------------------------------------------- /all/native/packagemanager/PackageInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/packagemanager/PackageInfo.cpp -------------------------------------------------------------------------------- /all/native/packagemanager/PackageInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/packagemanager/PackageInfo.h -------------------------------------------------------------------------------- /all/native/packagemanager/PackageManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/packagemanager/PackageManager.cpp -------------------------------------------------------------------------------- /all/native/packagemanager/PackageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/packagemanager/PackageManager.h -------------------------------------------------------------------------------- /all/native/packagemanager/PackageMetaInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/packagemanager/PackageMetaInfo.cpp -------------------------------------------------------------------------------- /all/native/packagemanager/PackageMetaInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/packagemanager/PackageMetaInfo.h -------------------------------------------------------------------------------- /all/native/packagemanager/PackageStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/packagemanager/PackageStatus.h -------------------------------------------------------------------------------- /all/native/packagemanager/PackageTileMask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/packagemanager/PackageTileMask.cpp -------------------------------------------------------------------------------- /all/native/packagemanager/PackageTileMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/packagemanager/PackageTileMask.h -------------------------------------------------------------------------------- /all/native/projections/EPSG3857.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/projections/EPSG3857.cpp -------------------------------------------------------------------------------- /all/native/projections/EPSG3857.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/projections/EPSG3857.h -------------------------------------------------------------------------------- /all/native/projections/EPSG4326.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/projections/EPSG4326.cpp -------------------------------------------------------------------------------- /all/native/projections/EPSG4326.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/projections/EPSG4326.h -------------------------------------------------------------------------------- /all/native/projections/Projection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/projections/Projection.cpp -------------------------------------------------------------------------------- /all/native/projections/Projection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/projections/Projection.h -------------------------------------------------------------------------------- /all/native/projections/ProjectionSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/projections/ProjectionSurface.h -------------------------------------------------------------------------------- /all/native/renderers/BackgroundRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/BackgroundRenderer.cpp -------------------------------------------------------------------------------- /all/native/renderers/BackgroundRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/BackgroundRenderer.h -------------------------------------------------------------------------------- /all/native/renderers/BillboardRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/BillboardRenderer.cpp -------------------------------------------------------------------------------- /all/native/renderers/BillboardRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/BillboardRenderer.h -------------------------------------------------------------------------------- /all/native/renderers/LineRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/LineRenderer.cpp -------------------------------------------------------------------------------- /all/native/renderers/LineRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/LineRenderer.h -------------------------------------------------------------------------------- /all/native/renderers/MapRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/MapRenderer.cpp -------------------------------------------------------------------------------- /all/native/renderers/MapRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/MapRenderer.h -------------------------------------------------------------------------------- /all/native/renderers/MapRendererListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/MapRendererListener.h -------------------------------------------------------------------------------- /all/native/renderers/NMLModelLODTreeRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/NMLModelLODTreeRenderer.h -------------------------------------------------------------------------------- /all/native/renderers/PointRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/PointRenderer.cpp -------------------------------------------------------------------------------- /all/native/renderers/PointRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/PointRenderer.h -------------------------------------------------------------------------------- /all/native/renderers/Polygon3DRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/Polygon3DRenderer.cpp -------------------------------------------------------------------------------- /all/native/renderers/Polygon3DRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/Polygon3DRenderer.h -------------------------------------------------------------------------------- /all/native/renderers/PolygonRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/PolygonRenderer.cpp -------------------------------------------------------------------------------- /all/native/renderers/PolygonRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/PolygonRenderer.h -------------------------------------------------------------------------------- /all/native/renderers/RedrawRequestListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/RedrawRequestListener.h -------------------------------------------------------------------------------- /all/native/renderers/RendererCaptureListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/RendererCaptureListener.h -------------------------------------------------------------------------------- /all/native/renderers/SolidRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/SolidRenderer.cpp -------------------------------------------------------------------------------- /all/native/renderers/SolidRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/SolidRenderer.h -------------------------------------------------------------------------------- /all/native/renderers/TileRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/TileRenderer.cpp -------------------------------------------------------------------------------- /all/native/renderers/TileRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/TileRenderer.h -------------------------------------------------------------------------------- /all/native/renderers/WatermarkRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/WatermarkRenderer.cpp -------------------------------------------------------------------------------- /all/native/renderers/WatermarkRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/WatermarkRenderer.h -------------------------------------------------------------------------------- /all/native/renderers/cameraevents/CameraEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/cameraevents/CameraEvent.h -------------------------------------------------------------------------------- /all/native/renderers/components/CullState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/components/CullState.cpp -------------------------------------------------------------------------------- /all/native/renderers/components/CullState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/components/CullState.h -------------------------------------------------------------------------------- /all/native/renderers/drawdatas/LabelDrawData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/drawdatas/LabelDrawData.h -------------------------------------------------------------------------------- /all/native/renderers/drawdatas/LineDrawData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/drawdatas/LineDrawData.cpp -------------------------------------------------------------------------------- /all/native/renderers/drawdatas/LineDrawData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/drawdatas/LineDrawData.h -------------------------------------------------------------------------------- /all/native/renderers/drawdatas/MarkerDrawData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/drawdatas/MarkerDrawData.h -------------------------------------------------------------------------------- /all/native/renderers/drawdatas/PointDrawData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/drawdatas/PointDrawData.h -------------------------------------------------------------------------------- /all/native/renderers/drawdatas/PopupDrawData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/drawdatas/PopupDrawData.h -------------------------------------------------------------------------------- /all/native/renderers/drawdatas/TileDrawData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/drawdatas/TileDrawData.cpp -------------------------------------------------------------------------------- /all/native/renderers/drawdatas/TileDrawData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/drawdatas/TileDrawData.h -------------------------------------------------------------------------------- /all/native/renderers/utils/BitmapTextureCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/utils/BitmapTextureCache.h -------------------------------------------------------------------------------- /all/native/renderers/utils/FrameBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/utils/FrameBuffer.cpp -------------------------------------------------------------------------------- /all/native/renderers/utils/FrameBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/utils/FrameBuffer.h -------------------------------------------------------------------------------- /all/native/renderers/utils/GLContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/utils/GLContext.cpp -------------------------------------------------------------------------------- /all/native/renderers/utils/GLContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/utils/GLContext.h -------------------------------------------------------------------------------- /all/native/renderers/utils/GLResource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/utils/GLResource.cpp -------------------------------------------------------------------------------- /all/native/renderers/utils/GLResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/utils/GLResource.h -------------------------------------------------------------------------------- /all/native/renderers/utils/GLResourceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/utils/GLResourceManager.h -------------------------------------------------------------------------------- /all/native/renderers/utils/NMLResources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/utils/NMLResources.cpp -------------------------------------------------------------------------------- /all/native/renderers/utils/NMLResources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/utils/NMLResources.h -------------------------------------------------------------------------------- /all/native/renderers/utils/Shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/utils/Shader.cpp -------------------------------------------------------------------------------- /all/native/renderers/utils/Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/utils/Shader.h -------------------------------------------------------------------------------- /all/native/renderers/utils/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/utils/Texture.cpp -------------------------------------------------------------------------------- /all/native/renderers/utils/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/utils/Texture.h -------------------------------------------------------------------------------- /all/native/renderers/utils/VTRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/utils/VTRenderer.cpp -------------------------------------------------------------------------------- /all/native/renderers/utils/VTRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/utils/VTRenderer.h -------------------------------------------------------------------------------- /all/native/renderers/workers/CullWorker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/workers/CullWorker.cpp -------------------------------------------------------------------------------- /all/native/renderers/workers/CullWorker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/renderers/workers/CullWorker.h -------------------------------------------------------------------------------- /all/native/routing/CartoOnlineRoutingService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/routing/CartoOnlineRoutingService.h -------------------------------------------------------------------------------- /all/native/routing/OSRMOfflineRoutingService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/routing/OSRMOfflineRoutingService.h -------------------------------------------------------------------------------- /all/native/routing/RouteMatchingEdge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/routing/RouteMatchingEdge.cpp -------------------------------------------------------------------------------- /all/native/routing/RouteMatchingEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/routing/RouteMatchingEdge.h -------------------------------------------------------------------------------- /all/native/routing/RouteMatchingPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/routing/RouteMatchingPoint.cpp -------------------------------------------------------------------------------- /all/native/routing/RouteMatchingPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/routing/RouteMatchingPoint.h -------------------------------------------------------------------------------- /all/native/routing/RouteMatchingRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/routing/RouteMatchingRequest.cpp -------------------------------------------------------------------------------- /all/native/routing/RouteMatchingRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/routing/RouteMatchingRequest.h -------------------------------------------------------------------------------- /all/native/routing/RouteMatchingResult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/routing/RouteMatchingResult.cpp -------------------------------------------------------------------------------- /all/native/routing/RouteMatchingResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/routing/RouteMatchingResult.h -------------------------------------------------------------------------------- /all/native/routing/RoutingInstruction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/routing/RoutingInstruction.cpp -------------------------------------------------------------------------------- /all/native/routing/RoutingInstruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/routing/RoutingInstruction.h -------------------------------------------------------------------------------- /all/native/routing/RoutingRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/routing/RoutingRequest.cpp -------------------------------------------------------------------------------- /all/native/routing/RoutingRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/routing/RoutingRequest.h -------------------------------------------------------------------------------- /all/native/routing/RoutingResult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/routing/RoutingResult.cpp -------------------------------------------------------------------------------- /all/native/routing/RoutingResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/routing/RoutingResult.h -------------------------------------------------------------------------------- /all/native/routing/RoutingService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/routing/RoutingService.cpp -------------------------------------------------------------------------------- /all/native/routing/RoutingService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/routing/RoutingService.h -------------------------------------------------------------------------------- /all/native/routing/SGREOfflineRoutingService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/routing/SGREOfflineRoutingService.h -------------------------------------------------------------------------------- /all/native/routing/utils/OSRMRoutingProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/routing/utils/OSRMRoutingProxy.cpp -------------------------------------------------------------------------------- /all/native/routing/utils/OSRMRoutingProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/routing/utils/OSRMRoutingProxy.h -------------------------------------------------------------------------------- /all/native/routing/utils/RoutingResultBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/routing/utils/RoutingResultBuilder.h -------------------------------------------------------------------------------- /all/native/routing/utils/ValhallaRoutingProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/routing/utils/ValhallaRoutingProxy.h -------------------------------------------------------------------------------- /all/native/search/SearchRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/search/SearchRequest.cpp -------------------------------------------------------------------------------- /all/native/search/SearchRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/search/SearchRequest.h -------------------------------------------------------------------------------- /all/native/search/VectorElementSearchService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/search/VectorElementSearchService.h -------------------------------------------------------------------------------- /all/native/search/VectorTileSearchService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/search/VectorTileSearchService.cpp -------------------------------------------------------------------------------- /all/native/search/VectorTileSearchService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/search/VectorTileSearchService.h -------------------------------------------------------------------------------- /all/native/search/query/QueryContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/search/query/QueryContext.h -------------------------------------------------------------------------------- /all/native/search/query/QueryExpression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/search/query/QueryExpression.h -------------------------------------------------------------------------------- /all/native/search/query/QueryExpressionImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/search/query/QueryExpressionImpl.h -------------------------------------------------------------------------------- /all/native/search/query/QueryExpressionParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/search/query/QueryExpressionParser.h -------------------------------------------------------------------------------- /all/native/search/utils/SearchProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/search/utils/SearchProxy.cpp -------------------------------------------------------------------------------- /all/native/search/utils/SearchProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/search/utils/SearchProxy.h -------------------------------------------------------------------------------- /all/native/services/CartoMapsService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/services/CartoMapsService.cpp -------------------------------------------------------------------------------- /all/native/services/CartoMapsService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/services/CartoMapsService.h -------------------------------------------------------------------------------- /all/native/services/CartoSQLService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/services/CartoSQLService.cpp -------------------------------------------------------------------------------- /all/native/services/CartoSQLService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/services/CartoSQLService.h -------------------------------------------------------------------------------- /all/native/styles/AnimationStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/AnimationStyle.cpp -------------------------------------------------------------------------------- /all/native/styles/AnimationStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/AnimationStyle.h -------------------------------------------------------------------------------- /all/native/styles/AnimationStyleBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/AnimationStyleBuilder.cpp -------------------------------------------------------------------------------- /all/native/styles/AnimationStyleBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/AnimationStyleBuilder.h -------------------------------------------------------------------------------- /all/native/styles/BalloonPopupButtonStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/BalloonPopupButtonStyle.cpp -------------------------------------------------------------------------------- /all/native/styles/BalloonPopupButtonStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/BalloonPopupButtonStyle.h -------------------------------------------------------------------------------- /all/native/styles/BalloonPopupStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/BalloonPopupStyle.cpp -------------------------------------------------------------------------------- /all/native/styles/BalloonPopupStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/BalloonPopupStyle.h -------------------------------------------------------------------------------- /all/native/styles/BalloonPopupStyleBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/BalloonPopupStyleBuilder.cpp -------------------------------------------------------------------------------- /all/native/styles/BalloonPopupStyleBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/BalloonPopupStyleBuilder.h -------------------------------------------------------------------------------- /all/native/styles/BillboardStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/BillboardStyle.cpp -------------------------------------------------------------------------------- /all/native/styles/BillboardStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/BillboardStyle.h -------------------------------------------------------------------------------- /all/native/styles/BillboardStyleBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/BillboardStyleBuilder.cpp -------------------------------------------------------------------------------- /all/native/styles/BillboardStyleBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/BillboardStyleBuilder.h -------------------------------------------------------------------------------- /all/native/styles/CartoCSSStyleSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/CartoCSSStyleSet.cpp -------------------------------------------------------------------------------- /all/native/styles/CartoCSSStyleSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/CartoCSSStyleSet.h -------------------------------------------------------------------------------- /all/native/styles/CompiledStyleSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/CompiledStyleSet.cpp -------------------------------------------------------------------------------- /all/native/styles/CompiledStyleSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/CompiledStyleSet.h -------------------------------------------------------------------------------- /all/native/styles/GeometryCollectionStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/GeometryCollectionStyle.cpp -------------------------------------------------------------------------------- /all/native/styles/GeometryCollectionStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/GeometryCollectionStyle.h -------------------------------------------------------------------------------- /all/native/styles/LabelStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/LabelStyle.cpp -------------------------------------------------------------------------------- /all/native/styles/LabelStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/LabelStyle.h -------------------------------------------------------------------------------- /all/native/styles/LabelStyleBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/LabelStyleBuilder.cpp -------------------------------------------------------------------------------- /all/native/styles/LabelStyleBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/LabelStyleBuilder.h -------------------------------------------------------------------------------- /all/native/styles/LineStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/LineStyle.cpp -------------------------------------------------------------------------------- /all/native/styles/LineStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/LineStyle.h -------------------------------------------------------------------------------- /all/native/styles/LineStyleBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/LineStyleBuilder.cpp -------------------------------------------------------------------------------- /all/native/styles/LineStyleBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/LineStyleBuilder.h -------------------------------------------------------------------------------- /all/native/styles/MarkerStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/MarkerStyle.cpp -------------------------------------------------------------------------------- /all/native/styles/MarkerStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/MarkerStyle.h -------------------------------------------------------------------------------- /all/native/styles/MarkerStyleBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/MarkerStyleBuilder.cpp -------------------------------------------------------------------------------- /all/native/styles/MarkerStyleBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/MarkerStyleBuilder.h -------------------------------------------------------------------------------- /all/native/styles/NMLModelStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/NMLModelStyle.cpp -------------------------------------------------------------------------------- /all/native/styles/NMLModelStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/NMLModelStyle.h -------------------------------------------------------------------------------- /all/native/styles/NMLModelStyleBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/NMLModelStyleBuilder.cpp -------------------------------------------------------------------------------- /all/native/styles/NMLModelStyleBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/NMLModelStyleBuilder.h -------------------------------------------------------------------------------- /all/native/styles/PointStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/PointStyle.cpp -------------------------------------------------------------------------------- /all/native/styles/PointStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/PointStyle.h -------------------------------------------------------------------------------- /all/native/styles/PointStyleBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/PointStyleBuilder.cpp -------------------------------------------------------------------------------- /all/native/styles/PointStyleBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/PointStyleBuilder.h -------------------------------------------------------------------------------- /all/native/styles/Polygon3DStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/Polygon3DStyle.cpp -------------------------------------------------------------------------------- /all/native/styles/Polygon3DStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/Polygon3DStyle.h -------------------------------------------------------------------------------- /all/native/styles/Polygon3DStyleBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/Polygon3DStyleBuilder.cpp -------------------------------------------------------------------------------- /all/native/styles/Polygon3DStyleBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/Polygon3DStyleBuilder.h -------------------------------------------------------------------------------- /all/native/styles/PolygonStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/PolygonStyle.cpp -------------------------------------------------------------------------------- /all/native/styles/PolygonStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/PolygonStyle.h -------------------------------------------------------------------------------- /all/native/styles/PolygonStyleBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/PolygonStyleBuilder.cpp -------------------------------------------------------------------------------- /all/native/styles/PolygonStyleBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/PolygonStyleBuilder.h -------------------------------------------------------------------------------- /all/native/styles/PopupStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/PopupStyle.cpp -------------------------------------------------------------------------------- /all/native/styles/PopupStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/PopupStyle.h -------------------------------------------------------------------------------- /all/native/styles/PopupStyleBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/PopupStyleBuilder.cpp -------------------------------------------------------------------------------- /all/native/styles/PopupStyleBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/PopupStyleBuilder.h -------------------------------------------------------------------------------- /all/native/styles/Style.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/Style.cpp -------------------------------------------------------------------------------- /all/native/styles/Style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/Style.h -------------------------------------------------------------------------------- /all/native/styles/StyleBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/StyleBuilder.cpp -------------------------------------------------------------------------------- /all/native/styles/StyleBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/StyleBuilder.h -------------------------------------------------------------------------------- /all/native/styles/StyleSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/StyleSelector.cpp -------------------------------------------------------------------------------- /all/native/styles/StyleSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/StyleSelector.h -------------------------------------------------------------------------------- /all/native/styles/StyleSelectorBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/StyleSelectorBuilder.cpp -------------------------------------------------------------------------------- /all/native/styles/StyleSelectorBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/StyleSelectorBuilder.h -------------------------------------------------------------------------------- /all/native/styles/StyleSelectorContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/StyleSelectorContext.cpp -------------------------------------------------------------------------------- /all/native/styles/StyleSelectorContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/StyleSelectorContext.h -------------------------------------------------------------------------------- /all/native/styles/StyleSelectorRule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/StyleSelectorRule.cpp -------------------------------------------------------------------------------- /all/native/styles/StyleSelectorRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/StyleSelectorRule.h -------------------------------------------------------------------------------- /all/native/styles/TextStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/TextStyle.cpp -------------------------------------------------------------------------------- /all/native/styles/TextStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/TextStyle.h -------------------------------------------------------------------------------- /all/native/styles/TextStyleBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/TextStyleBuilder.cpp -------------------------------------------------------------------------------- /all/native/styles/TextStyleBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/styles/TextStyleBuilder.h -------------------------------------------------------------------------------- /all/native/ui/BalloonPopupButtonClickInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/ui/BalloonPopupButtonClickInfo.cpp -------------------------------------------------------------------------------- /all/native/ui/BalloonPopupButtonClickInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/ui/BalloonPopupButtonClickInfo.h -------------------------------------------------------------------------------- /all/native/ui/BaseMapView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/ui/BaseMapView.cpp -------------------------------------------------------------------------------- /all/native/ui/BaseMapView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/ui/BaseMapView.h -------------------------------------------------------------------------------- /all/native/ui/ClickInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/ui/ClickInfo.cpp -------------------------------------------------------------------------------- /all/native/ui/ClickInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/ui/ClickInfo.h -------------------------------------------------------------------------------- /all/native/ui/MapClickInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/ui/MapClickInfo.cpp -------------------------------------------------------------------------------- /all/native/ui/MapClickInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/ui/MapClickInfo.h -------------------------------------------------------------------------------- /all/native/ui/MapEventListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/ui/MapEventListener.h -------------------------------------------------------------------------------- /all/native/ui/MapInteractionInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/ui/MapInteractionInfo.cpp -------------------------------------------------------------------------------- /all/native/ui/MapInteractionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/ui/MapInteractionInfo.h -------------------------------------------------------------------------------- /all/native/ui/NMLModelLODTreeClickInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/ui/NMLModelLODTreeClickInfo.cpp -------------------------------------------------------------------------------- /all/native/ui/NMLModelLODTreeClickInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/ui/NMLModelLODTreeClickInfo.h -------------------------------------------------------------------------------- /all/native/ui/PopupClickInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/ui/PopupClickInfo.cpp -------------------------------------------------------------------------------- /all/native/ui/PopupClickInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/ui/PopupClickInfo.h -------------------------------------------------------------------------------- /all/native/ui/PopupDrawInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/ui/PopupDrawInfo.cpp -------------------------------------------------------------------------------- /all/native/ui/PopupDrawInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/ui/PopupDrawInfo.h -------------------------------------------------------------------------------- /all/native/ui/RasterTileClickInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/ui/RasterTileClickInfo.cpp -------------------------------------------------------------------------------- /all/native/ui/RasterTileClickInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/ui/RasterTileClickInfo.h -------------------------------------------------------------------------------- /all/native/ui/TouchHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/ui/TouchHandler.cpp -------------------------------------------------------------------------------- /all/native/ui/TouchHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/ui/TouchHandler.h -------------------------------------------------------------------------------- /all/native/ui/UTFGridClickInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/ui/UTFGridClickInfo.cpp -------------------------------------------------------------------------------- /all/native/ui/UTFGridClickInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/ui/UTFGridClickInfo.h -------------------------------------------------------------------------------- /all/native/ui/VectorElementClickInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/ui/VectorElementClickInfo.cpp -------------------------------------------------------------------------------- /all/native/ui/VectorElementClickInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/ui/VectorElementClickInfo.h -------------------------------------------------------------------------------- /all/native/ui/VectorElementDragInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/ui/VectorElementDragInfo.cpp -------------------------------------------------------------------------------- /all/native/ui/VectorElementDragInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/ui/VectorElementDragInfo.h -------------------------------------------------------------------------------- /all/native/ui/VectorTileClickInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/ui/VectorTileClickInfo.cpp -------------------------------------------------------------------------------- /all/native/ui/VectorTileClickInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/ui/VectorTileClickInfo.h -------------------------------------------------------------------------------- /all/native/ui/workers/ClickHandlerWorker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/ui/workers/ClickHandlerWorker.cpp -------------------------------------------------------------------------------- /all/native/ui/workers/ClickHandlerWorker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/ui/workers/ClickHandlerWorker.h -------------------------------------------------------------------------------- /all/native/utils/AssetPackage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/utils/AssetPackage.h -------------------------------------------------------------------------------- /all/native/utils/Const.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/utils/Const.cpp -------------------------------------------------------------------------------- /all/native/utils/Const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/utils/Const.h -------------------------------------------------------------------------------- /all/native/utils/FileUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/utils/FileUtils.cpp -------------------------------------------------------------------------------- /all/native/utils/FileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/utils/FileUtils.h -------------------------------------------------------------------------------- /all/native/utils/GeneralUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/utils/GeneralUtils.cpp -------------------------------------------------------------------------------- /all/native/utils/GeneralUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/utils/GeneralUtils.h -------------------------------------------------------------------------------- /all/native/utils/GeomUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/utils/GeomUtils.cpp -------------------------------------------------------------------------------- /all/native/utils/GeomUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/utils/GeomUtils.h -------------------------------------------------------------------------------- /all/native/utils/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/utils/Log.cpp -------------------------------------------------------------------------------- /all/native/utils/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/utils/Log.h -------------------------------------------------------------------------------- /all/native/utils/LogEventListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/utils/LogEventListener.h -------------------------------------------------------------------------------- /all/native/utils/MemoryAssetPackage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/utils/MemoryAssetPackage.cpp -------------------------------------------------------------------------------- /all/native/utils/MemoryAssetPackage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/utils/MemoryAssetPackage.h -------------------------------------------------------------------------------- /all/native/utils/NetworkUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/utils/NetworkUtils.cpp -------------------------------------------------------------------------------- /all/native/utils/NetworkUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/utils/NetworkUtils.h -------------------------------------------------------------------------------- /all/native/utils/PlatformUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/utils/PlatformUtils.cpp -------------------------------------------------------------------------------- /all/native/utils/PlatformUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/utils/PlatformUtils.h -------------------------------------------------------------------------------- /all/native/utils/ThreadUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/utils/ThreadUtils.h -------------------------------------------------------------------------------- /all/native/utils/TileUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/utils/TileUtils.cpp -------------------------------------------------------------------------------- /all/native/utils/TileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/utils/TileUtils.h -------------------------------------------------------------------------------- /all/native/utils/URLFileLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/utils/URLFileLoader.cpp -------------------------------------------------------------------------------- /all/native/utils/URLFileLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/utils/URLFileLoader.h -------------------------------------------------------------------------------- /all/native/utils/ZippedAssetPackage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/utils/ZippedAssetPackage.cpp -------------------------------------------------------------------------------- /all/native/utils/ZippedAssetPackage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/utils/ZippedAssetPackage.h -------------------------------------------------------------------------------- /all/native/vectorelements/BalloonPopup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectorelements/BalloonPopup.cpp -------------------------------------------------------------------------------- /all/native/vectorelements/BalloonPopup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectorelements/BalloonPopup.h -------------------------------------------------------------------------------- /all/native/vectorelements/BalloonPopupButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectorelements/BalloonPopupButton.h -------------------------------------------------------------------------------- /all/native/vectorelements/Billboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectorelements/Billboard.cpp -------------------------------------------------------------------------------- /all/native/vectorelements/Billboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectorelements/Billboard.h -------------------------------------------------------------------------------- /all/native/vectorelements/CustomPopup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectorelements/CustomPopup.cpp -------------------------------------------------------------------------------- /all/native/vectorelements/CustomPopup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectorelements/CustomPopup.h -------------------------------------------------------------------------------- /all/native/vectorelements/CustomPopupHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectorelements/CustomPopupHandler.h -------------------------------------------------------------------------------- /all/native/vectorelements/GeometryCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectorelements/GeometryCollection.h -------------------------------------------------------------------------------- /all/native/vectorelements/Label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectorelements/Label.cpp -------------------------------------------------------------------------------- /all/native/vectorelements/Label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectorelements/Label.h -------------------------------------------------------------------------------- /all/native/vectorelements/Line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectorelements/Line.cpp -------------------------------------------------------------------------------- /all/native/vectorelements/Line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectorelements/Line.h -------------------------------------------------------------------------------- /all/native/vectorelements/Marker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectorelements/Marker.cpp -------------------------------------------------------------------------------- /all/native/vectorelements/Marker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectorelements/Marker.h -------------------------------------------------------------------------------- /all/native/vectorelements/NMLModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectorelements/NMLModel.cpp -------------------------------------------------------------------------------- /all/native/vectorelements/NMLModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectorelements/NMLModel.h -------------------------------------------------------------------------------- /all/native/vectorelements/Point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectorelements/Point.cpp -------------------------------------------------------------------------------- /all/native/vectorelements/Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectorelements/Point.h -------------------------------------------------------------------------------- /all/native/vectorelements/Polygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectorelements/Polygon.cpp -------------------------------------------------------------------------------- /all/native/vectorelements/Polygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectorelements/Polygon.h -------------------------------------------------------------------------------- /all/native/vectorelements/Polygon3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectorelements/Polygon3D.cpp -------------------------------------------------------------------------------- /all/native/vectorelements/Polygon3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectorelements/Polygon3D.h -------------------------------------------------------------------------------- /all/native/vectorelements/Popup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectorelements/Popup.cpp -------------------------------------------------------------------------------- /all/native/vectorelements/Popup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectorelements/Popup.h -------------------------------------------------------------------------------- /all/native/vectorelements/Text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectorelements/Text.cpp -------------------------------------------------------------------------------- /all/native/vectorelements/Text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectorelements/Text.h -------------------------------------------------------------------------------- /all/native/vectorelements/VectorElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectorelements/VectorElement.cpp -------------------------------------------------------------------------------- /all/native/vectorelements/VectorElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectorelements/VectorElement.h -------------------------------------------------------------------------------- /all/native/vectortiles/CartoVectorTileDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectortiles/CartoVectorTileDecoder.h -------------------------------------------------------------------------------- /all/native/vectortiles/MBVectorTileDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectortiles/MBVectorTileDecoder.cpp -------------------------------------------------------------------------------- /all/native/vectortiles/MBVectorTileDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectortiles/MBVectorTileDecoder.h -------------------------------------------------------------------------------- /all/native/vectortiles/TorqueTileDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectortiles/TorqueTileDecoder.cpp -------------------------------------------------------------------------------- /all/native/vectortiles/TorqueTileDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectortiles/TorqueTileDecoder.h -------------------------------------------------------------------------------- /all/native/vectortiles/VectorTileDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectortiles/VectorTileDecoder.cpp -------------------------------------------------------------------------------- /all/native/vectortiles/VectorTileDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectortiles/VectorTileDecoder.h -------------------------------------------------------------------------------- /all/native/vectortiles/utils/MVTLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectortiles/utils/MVTLogger.h -------------------------------------------------------------------------------- /all/native/vectortiles/utils/VTBitmapLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectortiles/utils/VTBitmapLoader.cpp -------------------------------------------------------------------------------- /all/native/vectortiles/utils/VTBitmapLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/all/native/vectortiles/utils/VTBitmapLoader.h -------------------------------------------------------------------------------- /android/csharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/android/csharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /android/csharp/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/csharp/UI/BaseMapViewRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/android/csharp/UI/BaseMapViewRenderer.cs -------------------------------------------------------------------------------- /android/csharp/UI/ConfigChooser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/android/csharp/UI/ConfigChooser.cs -------------------------------------------------------------------------------- /android/csharp/UI/MapRedrawRequestListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/android/csharp/UI/MapRedrawRequestListener.cs -------------------------------------------------------------------------------- /android/csharp/UI/MapView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/android/csharp/UI/MapView.cs -------------------------------------------------------------------------------- /android/java/com/carto/ui/ConfigChooser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/android/java/com/carto/ui/ConfigChooser.java -------------------------------------------------------------------------------- /android/java/com/carto/ui/GLTextureView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/android/java/com/carto/ui/GLTextureView.java -------------------------------------------------------------------------------- /android/java/com/carto/ui/MapView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/android/java/com/carto/ui/MapView.java -------------------------------------------------------------------------------- /android/java/com/carto/ui/MapViewInterface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/android/java/com/carto/ui/MapViewInterface.java -------------------------------------------------------------------------------- /android/java/com/carto/ui/TextureMapView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/android/java/com/carto/ui/TextureMapView.java -------------------------------------------------------------------------------- /android/java/com/carto/utils/DontObfuscate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/android/java/com/carto/utils/DontObfuscate.java -------------------------------------------------------------------------------- /android/modules/utils/AndroidUtils.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/android/modules/utils/AndroidUtils.i -------------------------------------------------------------------------------- /android/modules/utils/AssetUtils.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/android/modules/utils/AssetUtils.i -------------------------------------------------------------------------------- /android/modules/utils/BitmapUtils.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/android/modules/utils/BitmapUtils.i -------------------------------------------------------------------------------- /android/native/components/Task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/android/native/components/Task.cpp -------------------------------------------------------------------------------- /android/native/network/HTTPClientAndroidImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/android/native/network/HTTPClientAndroidImpl.h -------------------------------------------------------------------------------- /android/native/utils/AndroidUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/android/native/utils/AndroidUtils.cpp -------------------------------------------------------------------------------- /android/native/utils/AndroidUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/android/native/utils/AndroidUtils.h -------------------------------------------------------------------------------- /android/native/utils/AssetUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/android/native/utils/AssetUtils.cpp -------------------------------------------------------------------------------- /android/native/utils/AssetUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/android/native/utils/AssetUtils.h -------------------------------------------------------------------------------- /android/native/utils/BitmapUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/android/native/utils/BitmapUtils.cpp -------------------------------------------------------------------------------- /android/native/utils/BitmapUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/android/native/utils/BitmapUtils.h -------------------------------------------------------------------------------- /android/native/utils/JNILocalFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/android/native/utils/JNILocalFrame.h -------------------------------------------------------------------------------- /android/native/utils/JNIUniqueGlobalRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/android/native/utils/JNIUniqueGlobalRef.h -------------------------------------------------------------------------------- /android/native/utils/JNIUniqueLocalRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/android/native/utils/JNIUniqueLocalRef.h -------------------------------------------------------------------------------- /android/native/utils/PlatformUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/android/native/utils/PlatformUtils.cpp -------------------------------------------------------------------------------- /android/native/utils/ThreadUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/android/native/utils/ThreadUtils.cpp -------------------------------------------------------------------------------- /assets/carto-watermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/assets/carto-watermark.png -------------------------------------------------------------------------------- /assets/cartostyles-v2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/assets/cartostyles-v2.zip -------------------------------------------------------------------------------- /assets/default-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/assets/default-background.png -------------------------------------------------------------------------------- /assets/default-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/assets/default-line.png -------------------------------------------------------------------------------- /assets/default-marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/assets/default-marker.png -------------------------------------------------------------------------------- /assets/default-nmlmodel.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/assets/default-nmlmodel.nml -------------------------------------------------------------------------------- /assets/default-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/assets/default-point.png -------------------------------------------------------------------------------- /assets/default-polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/assets/default-polygon.png -------------------------------------------------------------------------------- /assets/evaluation-watermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/assets/evaluation-watermark.png -------------------------------------------------------------------------------- /assets/expired-watermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/assets/expired-watermark.png -------------------------------------------------------------------------------- /docs/guides/01-getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/docs/guides/01-getting-started.md -------------------------------------------------------------------------------- /docs/guides/02-map-view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/docs/guides/02-map-view.md -------------------------------------------------------------------------------- /docs/guides/03-layers-and-data-sources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/docs/guides/03-layers-and-data-sources.md -------------------------------------------------------------------------------- /docs/guides/04-vector-objects-on-map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/docs/guides/04-vector-objects-on-map.md -------------------------------------------------------------------------------- /docs/guides/05-offline-maps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/docs/guides/05-offline-maps.md -------------------------------------------------------------------------------- /docs/guides/06-package-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/docs/guides/06-package-manager.md -------------------------------------------------------------------------------- /docs/guides/07-mobile-geocoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/docs/guides/07-mobile-geocoding.md -------------------------------------------------------------------------------- /docs/guides/08-mobile-routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/docs/guides/08-mobile-routing.md -------------------------------------------------------------------------------- /docs/guides/09-CARTO-integrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/docs/guides/09-CARTO-integrations.md -------------------------------------------------------------------------------- /docs/guides/10-clustering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/docs/guides/10-clustering.md -------------------------------------------------------------------------------- /docs/guides/11-ground-overlays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/docs/guides/11-ground-overlays.md -------------------------------------------------------------------------------- /docs/guides/12-performance-enhancements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/docs/guides/12-performance-enhancements.md -------------------------------------------------------------------------------- /docs/guides/13-API-keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/docs/guides/13-API-keys.md -------------------------------------------------------------------------------- /docs/img/access_mobile_api_key.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/docs/img/access_mobile_api_key.jpg -------------------------------------------------------------------------------- /docs/img/avatar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/docs/img/avatar.gif -------------------------------------------------------------------------------- /docs/img/change_app_type.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/docs/img/change_app_type.jpg -------------------------------------------------------------------------------- /docs/img/delete_application.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/docs/img/delete_application.jpg -------------------------------------------------------------------------------- /docs/img/example_settings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/docs/img/example_settings.jpg -------------------------------------------------------------------------------- /docs/img/ground_overlay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/docs/img/ground_overlay.jpg -------------------------------------------------------------------------------- /docs/img/mapview-offline-layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/docs/img/mapview-offline-layers.png -------------------------------------------------------------------------------- /docs/img/mapview-online-layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/docs/img/mapview-online-layers.png -------------------------------------------------------------------------------- /docs/img/mobile-api-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/docs/img/mobile-api-overview.png -------------------------------------------------------------------------------- /docs/img/new_mobile_app_settings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/docs/img/new_mobile_app_settings.jpg -------------------------------------------------------------------------------- /docs/img/no_registered_apps.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/docs/img/no_registered_apps.jpg -------------------------------------------------------------------------------- /docs/img/package_manager_flow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/docs/img/package_manager_flow.jpg -------------------------------------------------------------------------------- /docs/img/platform_appid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/docs/img/platform_appid.jpg -------------------------------------------------------------------------------- /docs/img/registered_mobile_app.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/docs/img/registered_mobile_app.jpg -------------------------------------------------------------------------------- /docs/img/sample_android.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/docs/img/sample_android.jpg -------------------------------------------------------------------------------- /docs/img/sample_ios.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/docs/img/sample_ios.jpg -------------------------------------------------------------------------------- /docs/img/xcode_storyboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/docs/img/xcode_storyboard.jpg -------------------------------------------------------------------------------- /docs/reference/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/docs/reference/01-intro.md -------------------------------------------------------------------------------- /docs/reference/02-contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/docs/reference/02-contribute.md -------------------------------------------------------------------------------- /docs/support/01-support-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/docs/support/01-support-options.md -------------------------------------------------------------------------------- /docs/support/02-contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/docs/support/02-contribute.md -------------------------------------------------------------------------------- /dotnet/csharp/UI/IMapView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/dotnet/csharp/UI/IMapView.cs -------------------------------------------------------------------------------- /dotnet/csharp/UI/MapViewBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/dotnet/csharp/UI/MapViewBase.cs -------------------------------------------------------------------------------- /ios/csharp/Properties/ApiDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/ios/csharp/Properties/ApiDefinition.cs -------------------------------------------------------------------------------- /ios/csharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/ios/csharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ios/csharp/UI/MapRedrawRequestListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/ios/csharp/UI/MapRedrawRequestListener.cs -------------------------------------------------------------------------------- /ios/csharp/UI/MapView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/ios/csharp/UI/MapView.cs -------------------------------------------------------------------------------- /ios/glwrapper/EGL/egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/ios/glwrapper/EGL/egl.h -------------------------------------------------------------------------------- /ios/glwrapper/GLES2/gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/ios/glwrapper/GLES2/gl2.h -------------------------------------------------------------------------------- /ios/glwrapper/GLES2/gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/ios/glwrapper/GLES2/gl2ext.h -------------------------------------------------------------------------------- /ios/modules/utils/AssetUtils.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/ios/modules/utils/AssetUtils.i -------------------------------------------------------------------------------- /ios/modules/utils/BitmapUtils.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/ios/modules/utils/BitmapUtils.i -------------------------------------------------------------------------------- /ios/modules/utils/IOSUtils.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/ios/modules/utils/IOSUtils.i -------------------------------------------------------------------------------- /ios/native/components/Task.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/ios/native/components/Task.mm -------------------------------------------------------------------------------- /ios/native/graphics/BitmapCanvasIOSImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/ios/native/graphics/BitmapCanvasIOSImpl.h -------------------------------------------------------------------------------- /ios/native/graphics/BitmapCanvasIOSImpl.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/ios/native/graphics/BitmapCanvasIOSImpl.mm -------------------------------------------------------------------------------- /ios/native/network/HTTPClientIOSImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/ios/native/network/HTTPClientIOSImpl.h -------------------------------------------------------------------------------- /ios/native/network/HTTPClientIOSImpl.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/ios/native/network/HTTPClientIOSImpl.mm -------------------------------------------------------------------------------- /ios/native/utils/AssetUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/ios/native/utils/AssetUtils.h -------------------------------------------------------------------------------- /ios/native/utils/AssetUtils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/ios/native/utils/AssetUtils.mm -------------------------------------------------------------------------------- /ios/native/utils/BitmapUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/ios/native/utils/BitmapUtils.h -------------------------------------------------------------------------------- /ios/native/utils/BitmapUtils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/ios/native/utils/BitmapUtils.mm -------------------------------------------------------------------------------- /ios/native/utils/CFUniquePtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/ios/native/utils/CFUniquePtr.h -------------------------------------------------------------------------------- /ios/native/utils/IOSUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/ios/native/utils/IOSUtils.h -------------------------------------------------------------------------------- /ios/native/utils/IOSUtils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/ios/native/utils/IOSUtils.mm -------------------------------------------------------------------------------- /ios/native/utils/PlatformUtils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/ios/native/utils/PlatformUtils.mm -------------------------------------------------------------------------------- /ios/native/utils/ThreadUtils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/ios/native/utils/ThreadUtils.mm -------------------------------------------------------------------------------- /ios/objc/CartoMobileSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/ios/objc/CartoMobileSDK.h -------------------------------------------------------------------------------- /ios/objc/ui/MapLicenseManagerListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/ios/objc/ui/MapLicenseManagerListener.h -------------------------------------------------------------------------------- /ios/objc/ui/MapLicenseManagerListener.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/ios/objc/ui/MapLicenseManagerListener.mm -------------------------------------------------------------------------------- /ios/objc/ui/MapRedrawRequestListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/ios/objc/ui/MapRedrawRequestListener.h -------------------------------------------------------------------------------- /ios/objc/ui/MapRedrawRequestListener.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/ios/objc/ui/MapRedrawRequestListener.mm -------------------------------------------------------------------------------- /ios/objc/ui/MapView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/ios/objc/ui/MapView.h -------------------------------------------------------------------------------- /ios/objc/ui/MapView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/ios/objc/ui/MapView.mm -------------------------------------------------------------------------------- /ios/objc/utils/ExceptionWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/ios/objc/utils/ExceptionWrapper.h -------------------------------------------------------------------------------- /ios/objc/utils/ExceptionWrapper.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/ios/objc/utils/ExceptionWrapper.mm -------------------------------------------------------------------------------- /ios/stdlib/optional: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/ios/stdlib/optional -------------------------------------------------------------------------------- /ios/stdlib/variant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/ios/stdlib/variant -------------------------------------------------------------------------------- /known issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/known issues.md -------------------------------------------------------------------------------- /scripts/android-dev/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/android-dev/.gitignore -------------------------------------------------------------------------------- /scripts/android-dev/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/android-dev/.project -------------------------------------------------------------------------------- /scripts/android-dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/android-dev/README.md -------------------------------------------------------------------------------- /scripts/android-dev/app/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/android-dev/app/.classpath -------------------------------------------------------------------------------- /scripts/android-dev/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /libs -------------------------------------------------------------------------------- /scripts/android-dev/app/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/android-dev/app/.project -------------------------------------------------------------------------------- /scripts/android-dev/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/android-dev/app/build.gradle -------------------------------------------------------------------------------- /scripts/android-dev/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/android-dev/app/proguard-rules.pro -------------------------------------------------------------------------------- /scripts/android-dev/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/android-dev/build.gradle -------------------------------------------------------------------------------- /scripts/android-dev/carto_mobile_sdk/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /scripts/android-dev/carto_mobile_sdk/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/android-dev/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/android-dev/gradle.properties -------------------------------------------------------------------------------- /scripts/android-dev/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/android-dev/gradlew -------------------------------------------------------------------------------- /scripts/android-dev/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/android-dev/gradlew.bat -------------------------------------------------------------------------------- /scripts/android-dev/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/android-dev/settings.gradle -------------------------------------------------------------------------------- /scripts/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/android/build.gradle -------------------------------------------------------------------------------- /scripts/android/publish.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/android/publish.gradle -------------------------------------------------------------------------------- /scripts/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /scripts/android/src/main/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/android/stack-trace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/android/stack-trace.sh -------------------------------------------------------------------------------- /scripts/android/version-script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/android/version-script -------------------------------------------------------------------------------- /scripts/build-android.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/build-android.py -------------------------------------------------------------------------------- /scripts/build-ios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/build-ios.py -------------------------------------------------------------------------------- /scripts/build-winphone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/build-winphone.py -------------------------------------------------------------------------------- /scripts/build-xamarin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/build-xamarin.py -------------------------------------------------------------------------------- /scripts/build/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/build/CMakeLists.txt -------------------------------------------------------------------------------- /scripts/build/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/build/sdk_build_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/build/sdk_build_utils.py -------------------------------------------------------------------------------- /scripts/build/sdk_profiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/build/sdk_profiles.json -------------------------------------------------------------------------------- /scripts/doxygen/dox/mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/doxygen/dox/mainpage.dox -------------------------------------------------------------------------------- /scripts/doxygen/dox/screenshot_sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/doxygen/dox/screenshot_sample.png -------------------------------------------------------------------------------- /scripts/doxygen/doxygen-objc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/doxygen/doxygen-objc.conf -------------------------------------------------------------------------------- /scripts/doxygen/nutiteq_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/doxygen/nutiteq_transparent.png -------------------------------------------------------------------------------- /scripts/generate-assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/generate-assets.sh -------------------------------------------------------------------------------- /scripts/generate-doxygen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/generate-doxygen.sh -------------------------------------------------------------------------------- /scripts/generate-htmldoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/generate-htmldoc.sh -------------------------------------------------------------------------------- /scripts/generate-javadoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/generate-javadoc.sh -------------------------------------------------------------------------------- /scripts/generate-jazzy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/generate-jazzy.sh -------------------------------------------------------------------------------- /scripts/htmldoc/cleanup-htmldoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/htmldoc/cleanup-htmldoc.py -------------------------------------------------------------------------------- /scripts/htmldoc/template.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/htmldoc/template.xslt -------------------------------------------------------------------------------- /scripts/ios-dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/ios-dev/README.md -------------------------------------------------------------------------------- /scripts/ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/ios/Info.plist -------------------------------------------------------------------------------- /scripts/nuget/CARTO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/nuget/CARTO.png -------------------------------------------------------------------------------- /scripts/swig/cartoswig.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/swig/cartoswig.i -------------------------------------------------------------------------------- /scripts/swig/csharp/director.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/swig/csharp/director.swg -------------------------------------------------------------------------------- /scripts/swig/csharp/std_string.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/swig/csharp/std_string.i -------------------------------------------------------------------------------- /scripts/swig/csharp/std_string_win32.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/swig/csharp/std_string_win32.i -------------------------------------------------------------------------------- /scripts/swig/java/director.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/swig/java/director.swg -------------------------------------------------------------------------------- /scripts/swig/objc/director.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/swig/objc/director.swg -------------------------------------------------------------------------------- /scripts/swigpp-csharp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/swigpp-csharp.py -------------------------------------------------------------------------------- /scripts/swigpp-java.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/swigpp-java.py -------------------------------------------------------------------------------- /scripts/swigpp-objc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/swigpp-objc.py -------------------------------------------------------------------------------- /scripts/travis/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/travis/build.sh -------------------------------------------------------------------------------- /scripts/travis/prerequisites.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/travis/prerequisites.sh -------------------------------------------------------------------------------- /scripts/winphone10-vsix/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/winphone10-vsix/License.md -------------------------------------------------------------------------------- /scripts/winphone10-vsix/SDKManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/winphone10-vsix/SDKManifest.xml -------------------------------------------------------------------------------- /scripts/winphone10-vsix/carto128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/scripts/winphone10-vsix/carto128x128.png -------------------------------------------------------------------------------- /winphone/csharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/winphone/csharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /winphone/csharp/System/HandleRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/winphone/csharp/System/HandleRef.cs -------------------------------------------------------------------------------- /winphone/csharp/System/SystemException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/winphone/csharp/System/SystemException.cs -------------------------------------------------------------------------------- /winphone/csharp/UI/MapView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/winphone/csharp/UI/MapView.cs -------------------------------------------------------------------------------- /winphone/modules/utils/AssetUtils.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/winphone/modules/utils/AssetUtils.i -------------------------------------------------------------------------------- /winphone/modules/utils/BitmapUtils.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/winphone/modules/utils/BitmapUtils.i -------------------------------------------------------------------------------- /winphone/modules/utils/EGLContextWrapper.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/winphone/modules/utils/EGLContextWrapper.i -------------------------------------------------------------------------------- /winphone/native/components/Task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/winphone/native/components/Task.cpp -------------------------------------------------------------------------------- /winphone/native/utils/AssetUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/winphone/native/utils/AssetUtils.cpp -------------------------------------------------------------------------------- /winphone/native/utils/AssetUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/winphone/native/utils/AssetUtils.h -------------------------------------------------------------------------------- /winphone/native/utils/BitmapUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/winphone/native/utils/BitmapUtils.cpp -------------------------------------------------------------------------------- /winphone/native/utils/BitmapUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/winphone/native/utils/BitmapUtils.h -------------------------------------------------------------------------------- /winphone/native/utils/EGLContextWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/winphone/native/utils/EGLContextWrapper.cpp -------------------------------------------------------------------------------- /winphone/native/utils/EGLContextWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/winphone/native/utils/EGLContextWrapper.h -------------------------------------------------------------------------------- /winphone/native/utils/PlatformUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/winphone/native/utils/PlatformUtils.cpp -------------------------------------------------------------------------------- /winphone/native/utils/ThreadUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/mobile-sdk/HEAD/winphone/native/utils/ThreadUtils.cpp --------------------------------------------------------------------------------