| /plugin/elasticsearch/vendor/ruflin/elastica/src/Query/ |
| D | GeoBoundingBox.php | 19 …* @param array $coordinates Array with top left coordinate as first and bottom right coordinate as… 21 public function __construct(string $key, array $coordinates) argument 23 $this->addCoordinates($key, $coordinates); 29 …* @param array $coordinates Array with top left coordinate as first and bottom right coordinate as… 35 public function addCoordinates(string $key, array $coordinates): self argument 37 if (!isset($coordinates[0], $coordinates[1])) { 42 'top_left' => $coordinates[0], 43 'bottom_right' => $coordinates[1],
|
| D | GeoShapeProvided.php | 41 * @param array $coordinates Points making up the shape 46 …public function __construct(string $path, array $coordinates, string $shapeType = self::TYPE_ENVEL… argument 50 $this->_coordinates = $coordinates;
|
| /plugin/imagemapping/ |
| D | ImageMappingEditor.js | 17 coordinates = []; field in ImageMappingEditor 93 … this.coordinates = match[1].split(',').map((v) => parseInt(v, 10)).filter(Number); 220 let coords = this.coordinates; 221 if (this.coordinates.length === 3) { 223 this.coordinates[0], this.coordinates[1], 224 this.coordinates[0] + this.coordinates[2], this.coordinates[1] 247 this.coordinates = [ property 256 … this.coordinates = handles.map((h) => [h.getAttribute('cx'), h.getAttribute('cy')]).flat(); 259 this.coordinates = this.coordinates.map((v) => parseInt(v, 10)); 271 if (this.coordinates.length === 3) { [all …]
|
| D | README | 29 coordinates. The number of coordinates determines the shape of the link. 30 ^ # ^ shape ^ coordinates | 36 will be ignored for the map. The coordinates will be removed from the link
|
| /plugin/aichat/vendor/bdelespierre/php-kmeans/src/KMeans/ |
| D | Point.php | 33 protected $coordinates; variable in KMeans\\Point 35 public function __construct(Space $space, array $coordinates) argument 39 $this->coordinates = $coordinates; 45 'coordinates' => $this->coordinates, 58 $difference = $this->coordinates[$n] - $point->coordinates[$n]; 93 return $this->coordinates; 98 return isset($this->coordinates[$offset]); 103 return $this->coordinates[$offset]; 108 $this->coordinates[$offset] = $value; 113 unset($this->coordinates[$offset]);
|
| D | Cluster.php | 37 public function __construct(Space $space, array $coordinates) argument 39 parent::__construct($space, $coordinates); 92 $centroid->coordinates[$n] += $point->coordinates[$n]; 97 $this->coordinates[$n] = $centroid->coordinates[$n] / $count;
|
| D | Space.php | 59 public function newPoint(array $coordinates): Point argument 61 if (count($coordinates) != $this->dimention) { 62 … throw new \LogicException("(" . implode(',', $coordinates) . ") is not a point of this space"); 65 return new Point($this, $coordinates); 68 public function addPoint(array $coordinates, $data = null): Point argument 70 $this->attach($point = $this->newPoint($coordinates), $data);
|
| /plugin/geophp/vendor/funiq/geophp/src/Adapter/ |
| D | GeoJSON.php | 106 $geometry = $this->$method($obj->coordinates); 112 * @param array $coordinates Array of coordinates 115 private function arrayToPoint($coordinates) argument 117 switch (count($coordinates)) { 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]);
|
| D | KML.php | 134 $coordinates = $this->extractCoordinates($xml); 135 if (empty($coordinates)) { 139 $coordinates[0][0], 140 $coordinates[0][1], 141 (isset($coordinates[0][2]) ? $coordinates[0][2] : null), 142 (isset($coordinates[0][3]) ? $coordinates[0][3] : null) 148 $coordinates = $this->extractCoordinates($xml); 152 foreach ($coordinates as $set) { 156 foreach ($coordinates as $set) { 219 $coordinates = []; [all …]
|
| D | WKB.php | 182 $coordinates = $this->reader->readDoubles($this->dimension * 8); 184 switch (count($coordinates)) { 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]);
|
| D | GeoRSS.php | 105 $coordinates = []; 115 $coordinates[] = new Point($lon, $lat); 118 return $coordinates;
|
| /plugin/aichat/vendor/bdelespierre/php-kmeans/ |
| D | demo.php | 23 foreach ($points as $i => $coordinates) { 24 $space->addPoint($coordinates); 32 $coordinates = $cluster->getCoordinates(); variable 36 $coordinates[0], 37 $coordinates[1],
|
| D | README.md | 43 foreach ($points as $i => $coordinates) { 44 $space->addPoint($coordinates); 52 $coordinates = $cluster->getCoordinates(); 56 $coordinates[0], 57 $coordinates[1], 95 ### How to get coordinates of a point/cluster:
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/SemanticTile/ |
| D | TerrainTile.php | 33 public function setCoordinates(TileCoordinates $coordinates) argument 35 $this->coordinates = $coordinates; 42 return $this->coordinates;
|
| D | FeatureTile.php | 36 public function setCoordinates(TileCoordinates $coordinates) argument 38 $this->coordinates = $coordinates; 45 return $this->coordinates;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Directory/ |
| D | Building.php | 97 public function setCoordinates(BuildingCoordinates $coordinates) argument 99 $this->coordinates = $coordinates; 106 return $this->coordinates;
|
| /plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/ |
| D | PrivateKey.php | 56 * @param string $coordinates 59 public function multiply($coordinates) argument 63 return sodium_crypto_scalarmult($this->dA->toBytes(), $coordinates); 66 $point = [$this->curve->convertInteger(new BigInteger(strrev($coordinates), 256))]; 71 $coordinates = "\0$coordinates"; 73 $point = PKCS1::extractPoint($coordinates, $this->curve);
|
| /plugin/authgoogle/google/contrib/ |
| D | Google_FusiontablesService.php | 829 public $coordinates; variable in Google_Line 831 public function setCoordinates(/* array(Google_double) */ $coordinates) { argument 832 $this->assertIsArray($coordinates, 'Google_double', __METHOD__); 833 $this->coordinates = $coordinates; 836 return $this->coordinates; 889 public $coordinates; variable in Google_Point 891 public function setCoordinates(/* array(Google_double) */ $coordinates) { argument 892 $this->assertIsArray($coordinates, 'Google_double', __METHOD__); 893 $this->coordinates = $coordinates; 896 return $this->coordinates; [all …]
|
| /plugin/imagemap/ |
| D | README | 29 coordinates. The number of coordinates determines the shape of the link. 30 ^ # ^ shape ^ coordinates | 36 will be ignored for the map. The coordinates will be removed from the link
|
| /plugin/google_maps/ |
| D | script.js | 73 var point = new GLatLng(place.Point.coordinates[1], place.Point.coordinates[0]);
|
| /plugin/csv/_test/csv/ |
| D | c-q-q-json.csv | 2 1,"{""type"": ""Point"", ""coordinates"": [102.0, 0.5]}"
|
| /plugin/geophp/vendor/funiq/geophp/src/Geometry/ |
| D | Point.php | 66 * @param array $coordinates 70 public static function fromArray($coordinates) argument 73 return (new \ReflectionClass(get_called_class()))->newInstanceArgs($coordinates);
|
| /plugin/yuriigantt/3rd/dhtmlxgantt/sources/ext/ |
| D | dhtmlxgantt_click_drag.js | 173 var coordinates = _this._getCoordinates(event, selectedRegion); 174 selectedRegion.dragEnd(coordinates); 181 var coordinates = null; 183 coordinates = _this._getCoordinates(event, selectedRegion); 184 … if (Math.abs(scheduledDndCoordinates.relative.left - coordinates.relative.left) > 5) { 191 coordinates = _this._getCoordinates(event, selectedRegion); 192 selectedRegion.setEnd(coordinates);
|
| /plugin/geonav/js/ |
| D | getLocation.js | 53 var latitude = googleAddr.coordinates[1] ; 54 var longitude = googleAddr.coordinates[0] ;
|
| /plugin/imapmarkers/syntax/ |
| D | map.php | 117 $coordinates = $matches[4]; 124 $coordinates = $matches[3]; 131 $a_coords = explode(",", trim(strval($coordinates)));
|