Coder Social home page Coder Social logo

cordova-geocoder's Introduction

cordova-geocoder (Work in progress)

This plugin is a simple geocoder for the cordova platform (iOS, Android). You can translate an address to coordinates (geocoding) and vice verse (reverse geocoding). It uses the platform specific means to achieve this. On Android you need Google Play Services for this. There is intentionally no use of the Google Maps SDK, because geocoding with that is only allowed if used in conjunction with a Google Map. However since this plugin is just using the means of the platform, you can use it even, if there is no Map attached to it.

This is a fork of https://github.com/wf9a5m75/phonegap-googlemaps-plugin It does essentially the same but is a much bigger framework with lots of additional stuff. I removed all of this stuff to shrink it to the Geocoder only.

##Install In the directory of your cordova project, open a terminal and type:

$> cordova plugin add https://github.com/Eusebius1920/cordova-geocoder.git

##Example This plugin is simple to use. After adding the plugin you will find a Geocoder object in cordova.plugins. This object has one method called geocode and takes as argument a javascript object and a callback.

Geocoding

// Prepare data
var request = { address: 'Platz der Republik 1, 11011 Berlin' };

// Create callback
var callback = function(result, error){
	if(!!error){
		console.log('There was an error using the cordova-geocoder: ' + error);
		return;
	}
	
	// Use the result-array here.
}

// Call the plugin
cordova.plugins.Geocoder.geocode( request, callback );

Reverse geocoding

// Prepare data
var request = {};
request.position = {lat: 52.518593, lng: 13.376073};

// Create callback
var callback = function(result, error){
	if(!!error){
		console.log('There was an error using the cordova-geocoder: ' + error);
		return;
	}
	
	// Use the result-array here.
}

// Call the plugin
cordova.plugins.Geocoder.geocode( request, callback );

cordova-geocoder's People

Contributors

eusebius1920 avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.