OnlyInAmerica / android-gmaps-addons

A collection of add-ons for the Android Google Maps API v2 framework.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Android Google Maps API v2 Add-ons

A collection of add-ons for use with the Android Google Maps API v2 framework.

Requirements

  • Android SDK 8 or Higher
  • Google Play Services Library

Installation

  1. Ensure your Android application project is set up to use the Google Maps API v2. Follow these instructions if you need help.
  2. Download or git clone this library into your application project.
  3. Import the library into your Eclipse workspace.
  4. Add the newly imported Android Library Project as a dependency to your application project.

Sample Usage

If you have an MBTiles offline layer you would like to use, the following code should work.

// Retrieve GoogleMap instance from MapFragment or elsewhere
GoogleMap map;

// Create new TileOverlayOptions instance.
TileOverlayOptions opts = new TileOverlayOptions();

// Get a File reference to the MBTiles file.
File myMBTiles;

// Create an instance of MapBoxOfflineTileProvider.
MapBoxOfflineTileProvider provider = new MapBoxOfflineTileProvider(myMBTiles);

// Set the tile provider on the TileOverlayOptions.
opts.tileProvider(provider);

// Add the tile overlay to the map.
TileOverlay overlay = map.addTileOverlay(opts);

// Sometime later when the map view is destroyed, close the provider.
// This is important to prevent a leak of the backing SQLiteDatabase.
provider.close();

License

Copyright (c) 2012 Jonathan Baker

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

A collection of add-ons for the Android Google Maps API v2 framework.

License:MIT License


Languages

Language:Java 100.0%