Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit6159ec8

Browse files
authored
Merge pull requestgeocoder-php#9 from vicchi/gg-site-update
Update site landing page
2 parents21c4c2a +d319cc0 commit6159ec8

File tree

4 files changed

+37
-33
lines changed

4 files changed

+37
-33
lines changed

‎.gitignore‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
_site
1+
_site
2+
/Gemfile.lock

‎Gemfile‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
source'https://rubygems.org'
22

3-
gem'github-pages'
3+
gem'github-pages',group::jekyll_plugins

‎_config.yml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
highlighter:pygments
2-
markdown:redcarpet
1+
highlighter:rouge
2+
markdown:kramdown
33
exclude:[ README.md, Gemfile ]
44

55
name:Geocoder

‎index.markdown‎

Lines changed: 32 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -21,53 +21,56 @@ provides an abstraction layer for geocoding manipulations, as well as a
2121
powerful API.
2222

2323
**Geocoder** supports a lot of third-party services such as:
24-
[FreeGeoIp](http://freegeoip.net/static/index.html),
25-
[HostIp](http://www.hostip.info/),
26-
[IpInfoDB](http://www.ipinfodb.com/),
24+
[ArcGIS Online](http://resources.arcgis.com/en/help/arcgis-online-geocoding-rest-api/).
25+
[Bing Maps](http://msdn.microsoft.com/en-us/library/ff701715.aspx),
26+
[Geonames](http://www.geonames.org/),
2727
[Google Maps](http://code.google.com/apis/maps/documentation/geocoding/),
2828
[Google Maps for Business](https://developers.google.com/maps/documentation/business/webservices),
29-
[Bing Maps](http://msdn.microsoft.com/en-us/library/ff701715.aspx),
30-
[OpenStreetMap](http://nominatim.openstreetmap.org/),
31-
[CloudMade](http://developers.cloudmade.com/projects/show/geocoding-http-api),
32-
[Geoip](http://php.net/manual/book.geoip.php),
3329
[MapQuest](http://open.mapquestapi.com/),
34-
[OIORest](http://geo.oiorest.dk/),
35-
[GeoCoder.ca](http://geocoder.ca/),
36-
[GeoCoder.us](http://geocoder.us/),
37-
[IGN OpenLS](http://www.ign.fr/),
38-
[DataScienceToolkit](http://www.datasciencetoolkit.org/),
39-
[Yandex](http://api.yandex.com.tr/maps/doc/geocoder/desc/concepts/About.xml),
40-
[GeoPlugin](http://www.geoplugin.com/webservices),
30+
[Mapzen](https://mapzen.com/documentation/search/),
31+
[OpenCage](http://geocoder.opencagedata.com/),
32+
[OpenStreetMap Nominatim](http://nominatim.openstreetmap.org/),
33+
[Yandex](http://api.yandex.com.tr/maps/doc/geocoder/desc/concepts/About.xml) and
34+
[TomTom](http://developer.tomtom.com/docs/read/Geocoding), as well as IP-to-geo services such as:
35+
[FreeGeoIp](http://freegeoip.net/static/index.html),
36+
[Geoip](http://php.net/manual/book.geoip.php),
4137
[GeoIPs](http://www.geoips.com/developer/geoips-api),
42-
[MaxMind web service](http://dev.maxmind.com/geoip/legacy/web-services),
43-
[MaxMind binary file](http://dev.maxmind.com/geoip/legacy/downloadable),
44-
[Geonames](http://www.geonames.org/),
45-
[IpGeoBase](http://ipgeobase.ru/),
46-
[Baidu](http://developer.baidu.com/map/geocoding-api.htm),
47-
[TomTom](http://developer.tomtom.com/docs/read/Geocoding),
48-
and
49-
[ArcGIS Online](http://resources.arcgis.com/en/help/arcgis-online-geocoding-rest-api/).
38+
[GeoIP2](https://www.maxmind.com/en/geoip2-databases),
39+
[GeoPlugin](http://www.geoplugin.com/webservices),
40+
[HostIp](http://www.hostip.info/),
41+
[IpInfoDB](http://www.ipinfodb.com/),
42+
[MaxMind web service](http://dev.maxmind.com/geoip/legacy/web-services) and
43+
[MaxMind binary file](http://dev.maxmind.com/geoip/legacy/downloadable)
5044

45+
The**[Geocoder Extra](https://github.com/geocoder-php/geocoder-extra)** project also provides support for other third-party services including:
46+
[Baidu](http://developer.baidu.com/map/geocoding-api.htm),
47+
[DataScienceToolkit](http://www.datasciencetoolkit.org/),
48+
[Geocoder.ca](http://geocoder.ca/),
49+
[Geocoder.us](http://geocoder.us/),
50+
[Geocodio](http://geocod.io/),
51+
[Here](http://developer.here.com/rest-apis/documentation/geocoder/topics/overview.html),
52+
[IGN OpenLS](http://api.ign.fr/accueil),
53+
[ip2c](http://about.ip2c.org/),
54+
[IpGeoBase](http://ipgeobase.ru/),
55+
[IpInfo](http://ipinfo.io/developers),
56+
[Naver](http://developer.naver.com/wiki/pages/SrchAPI),
57+
[OGD Vienna](https://open.wien.at/site/datensatz/?id=c223b93a-2634-4f06-ac73-8709b9e16888),
58+
[OIORest](http://geo.oiorest.dk/) and
59+
[what3words](https://docs.what3words.com/api/v2/)
5160

5261
Documentation
5362
-------------
5463

5564
Here are the links to the official and complete documentation pages:
5665

57-
*[Geocoder documentation]({{ site.url }}Geocoder)
66+
*[Geocoder documentation]({{ site.url}}Geocoder)
5867
*[GeocodableBehavior documentation (Propel)]({{ site.url }}GeocodableBehavior)
5968
*[GeocoderBundle documentation (Symfony2)]({{ site.url }}BazingaGeocoderBundle)
6069
*[StackGeoIp documentation (Stack Middleware)]({{ site.url }}StackGeoIp)
6170
*[GeocoderServiceProvider documentation (Silex)]({{ site.url }}GeocoderServiceProvider)
6271
*[GeocoderLaravel documentation (Laravel 4)]({{ site.url }}GeocoderLaravel)
6372

6473

65-
Cookbook
66-
--------
67-
68-
In this cookbook, you will find specific solutions for specific needs.
69-
70-
7174
License
7275
-------
7376

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp