Home
last modified time | relevance | path

Searched refs:lat (Results 1 – 25 of 63) sorted by relevance

123

/plugin/structgeohash/
Dgeohash.js47 var lat = []; var lon = [];
48 lat[0] = -90.0; lat[1] = 90.0;
62 refine_interval(lat, cd, mask);
67 lat[2] = (lat[0] + lat[1])/2;
70 return { latitude: lat, longitude: lon};
76 var lat = []; var lon = [];
82 lat[0] = -90.0; lat[1] = 90.0;
94 mid = (lat[0] + lat[1]) / 2;
97 lat[0] = mid;
99 lat[1] = mid;
/plugin/geophp/vendor/funiq/geophp/src/Adapter/
DGoogleGeocode.php126 $lat = $centroid->y();
131 $url .= '?latlng=' . $lat . ',' . $lon;
167 $lat = $this->result->results[$delta]->geometry->location->lat;
169 return new Point($lon, $lat);
187 $lat = $this->result->results[$delta]->geometry->bounds->northeast->lat;
189 return new Point($lon, $lat);
194 $lat = $this->result->results[$delta]->geometry->bounds->northeast->lat;
196 return new Point($lon, $lat);
201 $lat = $this->result->results[$delta]->geometry->bounds->southwest->lat;
203 return new Point($lon, $lat);
[all …]
DGeoRSS.php107 $lat = 0;
111 $lat = is_numeric($item) ? $item : NAN;
115 $coordinates[] = new Point($lon, $lat);
/plugin/schedule/syntax/
Ddisplay.php87 list ($insee, $lat, $lon, $addr) = explode ("|", $line);
90 if ($insee && $lat)
91 …$renderer->doc .= ' <li lat="'.$insee.'" lon="'.$lat.'">56000</li>'.NL; // XXX position par defa…
94 if ($insee && $lat && $lon)
96 ' <li lat="'.$lat.'" lon="'.$lon.'">'.$insee.'</li>'.NL;
103 (($addr && $lat && $lon) ?
104 … '<span style="font-size:50%; background-color:#DDD;">(Lat. : '.$lat.' Long. : '.$lon.')</span>' :
107 … '<div class="scheduleAddresse wrap_left plugin_wrap" location="('.$lat.'|'.$lon.')">'.NL.
108 …' <p onMouseOver="javascript:scheduleHighlightLocation (\'('.$lat.'|'.$lon.')\')" onMouseOut="java…
/plugin/geotag/syntax/
Dgeotag.php76 $lat = $this->parseNumericParameter("lat", $tags);
103 hsc($lat),
106 $this->geohash($lat, $lon),
134 * @param float $lat
139 private function geohash(float $lat, float $lon): string argument
145 return (new Point($lon, $lat))->out('geohash');
157 [$lat, $lon, $alt, $geohash, $region, $placename, $country, $showlocation, $style] = $data;
158 $ddlat = $lat;
161 $lat = $this->convertLat($lat);
164 $lat .= 'º';
[all …]
/plugin/openlayersmap/syntax/
Dolmap.php180 [$lat, $lon, $text, $angle, $opacity, $img] = $data;
182 …$poi .= ", {lat:$lat,lon:$lon,txt:'$text',angle:$angle,opacity:$opacity,img:'$img',rowId: $rowId}";
185 $lat = $this->convertLat($lat);
188 $lat .= 'º';
197 … <td class="lat" title="' . $this->getLang('olmapPOIlatTitle') . '">' . $lat . '</td>
313 [$match, $lat, $lon, $angle, $opacity, $img, $text] = $pt;
314 $lat = is_numeric($lat) ? $lat : 0;
325 $overlay [] = [$lat, $lon, $text, $angle, $opacity, $img];
375 [$lat, $lon, $text, $angle, $opacity, $img] = $data;
377 . $lat . "," . $lon . "%7clabel%3a" . ++$rowId;
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Blogger/
DPostLocation.php22 public $lat; variable in Google\\Service\\Blogger\\PostLocation
33 public function setLat($lat) argument
35 $this->lat = $lat;
39 return $this->lat;
/plugin/geonav/js/
Dearth_a.js1 var lat; variable
67 … lookAt.set(parseFloat(lat), parseFloat(lon), 10, ge.ALTITUDE_RELATIVE_TO_GROUND, 0, 0,altitude);
85 lat=parseFloat(matchll[1]);
87 lat=lat.toFixed(6);
90 console.log("y= "+lat);
92 … lookAt.set(parseFloat(lat), parseFloat(lon), 10, ge.ALTITUDE_RELATIVE_TO_GROUND,0, 0,6000000);
94 reverseGeocode(lat, lon, element.id);
/plugin/googlemap3/
Dsyntax.php88 list($lat,$lng,$msg,$text) = $data;
89 $points .= ",{lat:$lat, lng:$lng, msg: '$msg', txt: '$text'}";
158 list($match,$lat,$lng,$msg,$text) = $pt;
160 $lat = is_numeric($lat) ? $lat : 0;
165 $overlay[] = array($lat,$lng,$msg,$text);
Dgooglemap3.js49 map.tmpLat = map.getCenter().lat();
73 var lat = event.latLng.lat();
76 var clat = centerLatLng.lat();
83 lat.toFixed(7)+ ', ' + lng.toFixed(7) + '<br />' +
84 dec2deg(lat) + ', ' + dec2deg(lng) + '<br />' +
133 center: new google.maps.LatLng(googleMapArray[i].lat, googleMapArray[i].lng),
168 googleMapArray[i].map.homeLatLng = new google.maps.LatLng(googleMapArray[i].lat,
178 position: new google.maps.LatLng(googleMapArray[i].overlay[j].lat,
/plugin/googlemaps/syntax/
Dgooglemap.php84 list($lat,$lon,$text) = $data;
85 $points .= ",{lat:$lat,lon:$lon,txt:'$text'}";
157 list($match,$lat,$lon,$text) = $pt;
159 $lat = is_numeric($lat) ? $lat : 0;
163 $overlay[] = array($lat,$lon,$text);
/plugin/geotag/
Daction.php61 $lat = $geotags ['lat'] ?? null;
74 if (!(empty($lat) && empty($lon))) {
76 …$event->data ['meta'] [] = ['name' => 'geo.position', 'content' => $lat . ';' . $lon . ';' . $alt];
78 … $event->data ['meta'] [] = ['name' => 'geo.position', 'content' => $lat . ';' . $lon];
84 if (!(empty($lat) && empty($lon))) {
85 $event->data ['meta'] [] = ['name' => "ICBM", 'content' => $lat . ', ' . $lon];
/plugin/googlemaps3/
Dscript.js26 center: {lat: googlemaps3[i].lat, lng: googlemaps3[i].lng}, property
41 for (j=0; j<googlemaps3[i].marker.length; j++) if (googlemaps3[i].marker[j].lat=='address') {
54 position = {lat: options.lat, lng: options.lng}; property
55 origin = options.lat+','+options.lng;
/plugin/schedule/lib/
DscheduleCitiesMap.js36 function scheduleGetLocation (lat, lon) { argument
38 parseFloat (parseFloat (lat).toFixed (schedulePrecision))+"|"+
97 function scheduleAddLatLonCityMarker (scheduleMap, cityCode, lat, lon) { argument
104 geometry: new ol.geom.Point (scheduleGetCoordFromLocation ([lat, lon])),
106 location: scheduleGetLocation (lat, lon),
107 lat: lat, property
155 var lat = "";
165 lat = inseeCityNameLatLon[cityCode][1];
169 ul.find ('li[insee="'+cityCode+'"][lat="'+lat+'"][lon="'+lon+'"]').each (function (index) {
176 (lat && lon) ?
[all …]
/plugin/osm/
Dsyntax.php128 list($match, $lat, $lon, $txt) = $pt;
130 $lat = is_numeric($lat) ? (float)$lat : 0;
/plugin/openlayersmap/helper/
Dstaticmap.php50 * @param float $lat the latitude of the map's center, eg. 40.714728
63 float $lat, argument
102 $lat,
/plugin/openlayersmap/
DStaticMap.php75 private $lat; variable in dokuwiki\\plugin\\openlayersmap\\StaticMap
97 * @param float $lat
125 float $lat, argument
141 $this->lat = $lat;
199 $geoms [] = new Point($this->lon, $this->lat);
258 $this->lat = $centroid->getY();
259 …("StaticMap::autoZoom: Set autozoom options to: z: $this->zoom, lon: $this->lon, lat: $this->lat");
274 …[$this->zoom, $this->lat, $this->lon, $this->width, $this->height, serialize($this->markers), $thi…
328 $this->centerY = $this->latToTile($this->lat, $this->zoom);
346 * @param float $lat
[all …]
/plugin/socialcards/
Daction.php193 $lat = $geotags['lat'] ?? 0;
195 if(!(empty($lat) && empty($lon))) {
198 'content' => $lat,
/plugin/spatialhelper/helper/
Dsearch.php72 * @param float $lat
78 final public function findNearbyLatLon(float $lat, float $lon): array argument
80 $geometry = new Point($lon, $lat);
/plugin/authgoogle/google/contrib/
DGoogle_CoordinateService.php79 * @param double $lat The latitude coordinate of this job's location.
92 …public function insert($teamId, $address, $lat, $lng, $title, Google_Job $postBody, $optParams = a… argument
93 …$params = array('teamId' => $teamId, 'address' => $address, 'lat' => $lat, 'lng' => $lng, 'title' …
642 public $lat; variable in Google_Location
657 public function setLat( $lat) { argument
658 $this->lat = $lat;
661 return $this->lat;
/plugin/pdfjs/pdfjs/web/locale/hu/
Dviewer.properties177 find_match_count[one]={{current}} / {{total}} találat
178 find_match_count[two]={{current}} / {{total}} találat
179 find_match_count[few]={{current}} / {{total}} találat
180 find_match_count[many]={{current}} / {{total}} találat
181 find_match_count[other]={{current}} / {{total}} találat
186 find_match_count_limit[zero]=Több mint {{limit}} találat
187 find_match_count_limit[one]=Több mint {{limit}} találat
188 find_match_count_limit[two]=Több mint {{limit}} találat
189 find_match_count_limit[few]=Több mint {{limit}} találat
190 find_match_count_limit[many]=Több mint {{limit}} találat
[all …]
/plugin/googlemaps/
Dscript.js55 map.setCenter(new GLatLng(lat, lon), zoom);
64 map.addOverlay(create_marker(new GLatLng(overlay[j].lat,overlay[j].lon),overlay[j].txt));
/plugin/advanced/lang/fr/config/
Dhooks.txt10 | ''sidebarheader.html'' | En haut de la barre latérale (si existante) |
11 | ''sidebarfooter.html'' | En bas de la barre latérale (si existante) |
/plugin/spatialhelper/
Daction.php253 $lat = (float)$searchresults ['lat'];
278 ' lat;lon: ' . $lat . ';' . $lon
302 ' lat;lon: ' . $lat . ';' . $lon
/plugin/openlayersmap/_test/data/pages/
Dissue34.txt4 <olmap id="olMap_example" width="550px" height="450px" lat="51.3680" lon="6.1403" zoom="14" statusb…

123