├── README.textile ├── example.html ├── jquery.geolocation.js └── style.css /README.textile: -------------------------------------------------------------------------------- 1 | h2. Simple jQuery plugin for Geolocation based on addresses 2 | 3 | Usage: 4 | 5 |
6 |
7 |
8 |
9 |
10 | // Geolocate and plot one address
11 | $("#mapCanvas").geolocate("1 Infinite Loop, Cupertino, Santa Clara, California 95014");
12 |
13 | // Geolocate more than one address
14 | $("#mapCanvas").geolocate([
15 | "Rua Domiciano Leite Ribeiro, 210, São Paulo, SP, Brasil",
16 | "Leonardo da Vinci, 200, SP, São Paulo"
17 | ]);
18 |
19 |
20 |
21 |
22 | For a real usage take a look on example.html file.
23 |
24 | h2. License
25 |
26 | Under no license, do whatever you want with this.
27 | Original author: 2011 Daniel Lopes,
--------------------------------------------------------------------------------
/example.html:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |