Home
last modified time | relevance | path

Searched refs:Point (Results 1 – 25 of 97) sorted by last modified time

1234

/plugin/openlayersmap/
H A DStaticMap.php27 use geoPHP\Geometry\Point;
199 $geoms [] = new Point($this->lon, $this->lat);
202 $geoms [] = new Point($marker ['lon'], $marker ['lat']);
651 case 'Point':
735 * @param Point $point
26 use geoPHP\Geometry\Point; global() alias
H A Dscript.js261 geometry: new ol.geom.Point(ol.proj.fromLonLat([p.lon, p.lat])),
362 'Point': new ol.style.Style({
431 'Point': new ol.style.Style({
350 'Point': new ol.style.Style({ global() property in createMap.geoJsonStyle
419 'Point': new ol.style.Style({ global() property in createMap.gpxJsonStyle
/plugin/openlayersmap/ol7/
H A Dol.js.map
/plugin/openlayersmap/syntax/
H A Dolmap.php21 use geoPHP\Geometry\Point;
818 $renderer->meta['geo']['geohash'] = (new Point($mainLon, $mainLat))->out('geohash');
20 use geoPHP\Geometry\Point; global() alias
/plugin/geotag/syntax/
H A Dgeotag.php18 use geoPHP\Geometry\Point; alias
127 return (new Point($lon, $lat))->out('geohash');
/plugin/geophp/
H A Ddeleted.files20 geoPHP/lib/geometry/Point.class.php
H A Dcomposer.lock57 "description": "Open-source native PHP library for doing geometry operations. Can read and write a wide variety of formats: (E)WKT, (E)WKB, TWKB, GeoJSON, KML, GPX, GeoRSS. Works with all Simple-Feature geometries (Point, LineString, Polygon...) and can be used to get centroids, bounding-boxes, area, etc.",
/plugin/geophp/vendor/funiq/geophp/src/Adapter/
H A DGeoHash.php6 use geoPHP\Geometry\Point; alias
79 * Convert the geoHash to a Point. The point is 2-dimensional.
84 * @return Point|Polygon the converted GeoHash
90 return new Point($decodedHash['centerLongitude'], $decodedHash['centerLatitude']);
96 new Point($decodedHash['minLongitude'], $decodedHash['maxLatitude']),
97 new Point($decodedHash['maxLongitude'], $decodedHash['maxLatitude']),
98 new Point($decodedHash['maxLongitude'], $decodedHash['minLatitude']),
99 new Point($decodedHash['minLongitude'], $decodedHash['minLatitude']),
100 new Point($decodedHash['minLongitude'], $decodedHash['maxLatitude']),
113 * @return string the GeoHash or null when the $geometry is not a Point
[all...]
H A DGeoJSON.php8 use geoPHP\Geometry\Point; alias
113 * @return Point
119 return new Point($coordinates[0], $coordinates[1]);
122 return new Point($coordinates[0], $coordinates[1], $coordinates[2]);
125 return new Point($coordinates[0], $coordinates[1], $coordinates[2], $coordinates[3]);
128 return new Point();
H A DGeoRSS.php9 use geoPHP\Geometry\Point; alias
115 $coordinates[] = new Point($lon, $lat);
127 $points[] = !empty($pointArray) ? $pointArray[0] : new Point();
169 new Point($parts[3], $parts[2]),
170 new Point($parts[3], $parts[0]),
171 new Point($parts[1], $parts[0]),
172 new Point($parts[1], $parts[2]),
173 new Point($parts[3], $parts[2]),
189 $points[] = new Point($parts[1], $parts[0]);
H A DGoogleGeocode.php7 use geoPHP\Geometry\Point; alias
169 return new Point($lon, $lat);
189 return new Point($lon, $lat);
196 return new Point($lon, $lat);
203 return new Point($lon, $lat);
210 return new Point($lon, $lat);
H A DKML.php9 use geoPHP\Geometry\Point; alias
136 return new Point();
138 return new Point(
157 $pointArray[] = new Point(
262 /** @var Point $geometry */
281 * @param Point $geometry
286 $str = '<' . $this->nss . "Point>\n<" . $this->nss . 'coordinates>';
292 return $str . '</' . $this->nss . 'coordinates></' . $this->nss . "Point>\n";
H A DOSM.php16 use geoPHP\Geometry\Point; alias
90 'point' => new Point($lon, $lat),
134 /** @var Point[] */
445 /** @var Point $geometry */
468 * @param Point $point
H A DTWKB.php25 use geoPHP\Geometry\Point; alias
55 /** @var Point|null */
168 $this->lastPoint = new Point(0, 0, 0, 0);
181 $geometry = $this->getMulti('Point', $options);
205 * @return Point
211 return new Point();
230 $this->lastPoint = new Point($x, $y, $z, $m);
305 case 'Point':
389 $this->lastPoint = new Point(0, 0, 0, 0);
393 /** @var Point
[all...]
H A DWKB.php7 use geoPHP\Geometry\Point; alias
157 $geometry = $this->getMulti('Point');
186 $point = new Point($coordinates[0], $coordinates[1]);
190 $point = new Point($coordinates[0], $coordinates[1], $coordinates[2]);
192 $point = new Point($coordinates[0], $coordinates[1], null, $coordinates[2]);
196 $point = new Point($coordinates[0], $coordinates[1], $coordinates[2], $coordinates[3]);
252 case 'Point':
296 /** @var Point $geometry */
328 * @param Point $point
H A DWKT.php9 use geoPHP\Geometry\Point; alias
29 * @param string $typeString Type to find, eg. "Point", or "LineStringZ"
118 return new Point();
132 return new Point($parts[0], $parts[1], $z, $m);
/plugin/geophp/vendor/funiq/geophp/src/Geometry/
H A DMultiLineString.php61 return new Point($x / $totalLength, $y / $totalLength);
H A DMultiPoint.php14 * @method Point[] getComponents()
15 * @property Point[] $components The elements of a MultiPoint are Points
22 parent::__construct($components, true, Point::class);
46 $points[] = Point::fromArray($point);
87 return new Point();
103 return new Point($x / $this->numPoints(), $y / $this->numPoints());
H A DMultiPolygon.php52 return new Point($x / $totalArea, $y / $totalArea);
H A DPoint.php8 * A Point is a 0-dimensional geometric object and represents a single location in coordinate space.
9 * A Point has an x-coordinate value, a y-coordinate value.
12 class Point extends Geometry class
38 throw new InvalidGeometryException("Cannot construct Point. x and y should be numeric");
49 throw new InvalidGeometryException("Cannot construct Point. z should be numeric");
58 throw new InvalidGeometryException("Cannot construct Point. m should be numeric");
67 * @return Point
179 * The boundary of a Point is the empty set.
204 * @return Point[]
212 * @return Point[]
[all...]
H A DPolygon.php112 * @return Point
117 return new Point();
143 return new Point();
145 return new Point($x / $totalArea, $y / $totalArea);
175 * @returns Point The outermost point
251 * @see http://en.wikipedia.org/wiki/Point%5Fin%5Fpolygon
253 * @param Point $point
310 * @param Point $point
H A DCollection.php12 * component geometries. Therefore everything but a Point
124 if ($envelope->typeName() == 'Point') {
232 * @return Point[]
244 * @param Point[] $points Result array as reference
249 if ($component instanceof Point) {
307 * @return LineString[] | Point[][]
H A DCurve.php12 * @method Point[] getComponents()
13 * @property Point[] $components A curve consists of sequence of Points
18 public function __construct($components = [], $allowEmptyComponents = false, $allowedComponentType = Point::class)
67 * @return Point[]
H A DGeometry.php32 const POINT = 'Point';
134 * @return Point
174 * @return Point|null
179 * @return Point|null
191 * @return Point|null
214 * @return Point[]
224 * @return LineString[] | Point[][] | null
352 new Point($boundingBox['maxx'], $boundingBox['miny']),
353 new Point($boundingBox['maxx'], $boundingBox['maxy']),
354 new Point(
[all...]
/plugin/geophp/vendor/funiq/geophp/
H A DREADME.md6 KML, GPX, and GeoRSS. It works with all Simple-Feature geometries (Point, LineString, Polygon, GeometryCollection etc.)

1234