-
Notifications
You must be signed in to change notification settings - Fork 3
/
README
26 lines (15 loc) · 840 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# jquery-geolocation-picker
# usage
<script type="text/javascript" src='http://maps.google.com/maps/api/js?sensor=false'></script>
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js'></script>
<script type='text/javascript' src='jquery.geolocationpicker.js'></script>
<script type="text/javascript">
$(document).ready(function(){
$('input#geo').geoLocationPicker();
});
</script>
see index.html source for more ....
# disclaimer
This jQuery plugin is totally inspired by http://code.google.com/p/locationpicker/ (chris@webcoda.co.uk).
Unfortuanatelly the changes I've made breaks the original plugin assumptions - like Search button i.e.
So I've decided to release it in separete repository - but still be sure that most of work is just ported from Chris work.