-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
1,083 additions
and
1,858 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
## 1.4.0 (June 8, 2024) | ||
* Convert to JS ES6. | ||
|
||
## 1.3.0 (May 31, 2019) | ||
* Initial convert to Google Maps API V3. | ||
|
||
## 1.2.3 (April 30, 2010) | ||
* Added scroll wheel zoom to the map. | ||
|
||
## 1.2.2 (March 26, 2010) | ||
* The accuracy bar fix was not sufficient. It needed more. | ||
|
||
## 1.2.1 (March 11, 2010) | ||
* Fixed a CSS bug in the accuracy bar. | ||
|
||
## 1.2 (February 11, 2010) | ||
* Added access to the W3C Geolocator options ("Where Am I Now?") | ||
|
||
## 1.1.9 (February 6, 2010) | ||
* Worked on optimizing and improving the appearance of the accuracy bar. | ||
|
||
## 1.1.8 (February 5, 2010) | ||
* Fixed a CSS bug in that bar. | ||
|
||
## 1.1.7 (February 5, 2010) | ||
* Added accuracy bar indicator to search results. | ||
|
||
## 1.1.6 (February 4, 2010) | ||
* Added block delimiters ("##START_" and "##END_") to allow parsing by the WordPress Plugin. | ||
|
||
## 1.1.5 (February 1, 2010) | ||
* Changed the IDs, so this can be more easily inserted into other pages or CMS. | ||
|
||
## 1.1.4 (February 1, 2010) | ||
* Expanded the label fields, as the text would overflow when increased by one step. | ||
|
||
## 1.1.3 (January 31, 2010) | ||
* Moved the items around, in order to separate the regular lookup from the reverse lookup. | ||
* Added the ability to hide the long/lat information (which also hides the map). | ||
|
||
## 1.1.2 (January 31, 2010) | ||
* Hide the multiple placemark nav field if there is only one placemark. | ||
* Added a "Transfer All" link to the transfer column. | ||
* Fixed the styling for the address display field It was a wee bit too wide. | ||
|
||
## 1.1.1 (January 29, 2010) | ||
* Made some fixes to make TotalValidator happy. | ||
* Tweaked the colors to mesh with the marker colors better. | ||
* Added links in the debug string, so you can select placemarks from the dump. | ||
|
||
## 1.1 (January 29, 2010) | ||
* Added an interactive map. | ||
|
||
## 1.0.3 (January 28, 2010) | ||
* Fixed a couple of issues with Chrome. | ||
* Added an initializer function, and now allow the debug info to be hidden as a choice. | ||
|
||
## 1.0.2 (January 28, 2010) | ||
* Added a "focus tracker." This enhances usability by allowing a quick, natural response to hitting the "enter" key. | ||
|
||
## 1.0.1 (January 27, 2010) | ||
* Moved the debug display into the main wrapper. | ||
* The debug info is now shown or hidden by a checkbox. | ||
* Segregated the display of the debug info slightly to enhance readability. | ||
* Improved the code comments. | ||
|
||
## 1.0 (January 27, 2010) | ||
* Initial release. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,22 @@ | ||
# geocoder | ||
Google Maps JS Geocoder | ||
|
||
GOOGLE MAPS GEOCODER TOOL. | ||
|
||
This is a very simple tool that is meant to be a "workshop" for address lookups, using the Google JavaScript Geocode API. | ||
|
||
It has two boxes: | ||
|
||
Address Entry Form | ||
This form is on the left, and contains a bunch of text input fields. | ||
You enter the address into these fields, and the string below them shows how the address is being "built." | ||
When you submit the form, a Google Geocode is done, using the "built" address. You can also enter a long/lat pair, | ||
and do a reverse geocode. | ||
|
||
Geocode Response Display | ||
This is on the right side, and displays the result of the lookup. It displays them as simple <div> elements. | ||
Between the two forms is a column of links that allows you to copy data from the response to the corresponding | ||
text input in the Entry form. | ||
You will also have a link in the response form that allows you to go to Google Maps to observe the location there. | ||
If there are more than one places that correspond to the given data, they are displayed, one at a time, and links | ||
are provided to help you select which one is displayed. |
Oops, something went wrong.