mfeldheim / map-stuff
Stuff related to maps
1.1
2014-01-24 16:15 UTC
Requires
- php: >=5.3.2
- guzzle/http: >=3.7.0,<3.9.0
- guzzle/plugin-oauth: >=3.7.0,<3.9.0
- phpunit/phpunit: 3.7.28
Requires (Dev)
- ext-gd: *
This package is not auto-updated.
Last update: 2025-03-25 03:06:28 UTC
README
stuff related to maps
Class \Geo\Coder
Client to receive coordinates from a webservice. Plugins implemented:
- Y!Boss (Yahoo)
- Nominatim (OSM)
Usage
use Geo\Coder\Plugin;
$geocoder = new \Geo\Coder(
new Nominatim( array(
'requestURI' => 'http://nominatim.openstreetmap.org/search',
'i118n' => 'en'
))
);
$result = self::$geocoder->fetchCoords(
'Muellerstr. 40, 80469 München',
Coder::PRECISION_HIGH
);
$result->getLat();
$result->getLon();
// etc.
Class \Geo\Projection
degreesToPixels lat/lng to pixels on a map
Usage
$mapProjection = new \Geo\Projection();
$pixelCoordinates = $mapProjection->degreesToPixels( $latitude, $longitude, $mapWidth, $mapHeight );
Example file examples/drawPointsOnMap.php
# composer install
php drawPointsOnMap.php
requires
- php >= 5.3.2
- php-gd (optionally compiled with freetype support)