Home
last modified time | relevance | path

Searched refs:lng (Results 1 – 16 of 16) sorted by relevance

/plugin/authgooglesheets/vendor/google/apiclient-services/src/Blogger/
H A DPostLocation.php23 public $lng; variable in Google\\Service\\Blogger\\PostLocation
41 public function setLng($lng) argument
43 $this->lng = $lng;
47 return $this->lng;
/plugin/googlemap3/
H A 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;
161 $lng = is_numeric($lng) ? $lng : 0;
165 $overlay[] = array($lat,$lng,$msg,$text);
H A Dgooglemap3.js50 map.tmpLng = map.getCenter().lng();
74 var lng = event.latLng.lng();
77 var clng = centerLatLng.lng();
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),
169 googleMapArray[i].lng)
179 googleMapArray[i].overlay[j].lng),
/plugin/googlemaps3/
H A Dscript.js26 center: {lat: googlemaps3[i].lat, lng: googlemaps3[i].lng},
54 position = {lat: options.lat, lng: options.lng}; property in initMap.attachMarker.position
55 origin = options.lat+','+options.lng;
58 origin = options.lng;
82 geocoder.geocode({'address': options.lng}, function(results, status) {
/plugin/translation/
H A Dhelper.php76 [$lng] = $this->getTransParts($id);
77 return $lng;
116 * $lng is default lang
118 * @param string $lng
122 public function buildTransID($lng, $idpart)
124 if ($lng && in_array($lng, $this->translations)) {
125 $link = ':' . $this->translationNs . $lng . ':' . $idpart;
126 $name = $lng;
329 $lng
119 buildTransID($lng, $idpart) global() argument
[all...]
/plugin/multilingual/
H A Dhelper.php56 function buildTransLink($lng,$idpart){ argument
64 $link = ':'.$lng.':'.$idpart;
65 $name = $lng;
/plugin/html2pdf/multilingual/
H A Dhelper.php56 function buildTransLink($lng,$idpart){ argument
64 $link = ':'.$lng.':'.$idpart;
65 $name = $lng;
/plugin/autotranslation/
H A Dhelper.php114 list($lng) = $this->getTransParts($id);
115 return $lng;
122 list($lng, $idpart) = $this->getTransParts($id);
154 function buildTransID($lng, $idpart) { argument
156 if($lng) {
157 $link = ':' . $this->translationsNs . $lng . ':' . $idpart;
158 $name = $lng;
419 $lng = $this->getLangPart($ID);
420 if($lng == $this->defaultlang) return;
/plugin/geophp/vendor/funiq/geophp/src/Adapter/
H A DGoogleGeocode.php168 $lon = $this->result->results[$delta]->geometry->location->lng;
188 $lon = $this->result->results[$delta]->geometry->bounds->southwest->lng;
195 $lon = $this->result->results[$delta]->geometry->bounds->northeast->lng;
202 $lon = $this->result->results[$delta]->geometry->bounds->southwest->lng;
209 $lon = $this->result->results[$delta]->geometry->bounds->northeast->lng;
/plugin/translation3/
H A Dhelper.php76 function buildTransID($lng,$idpart){ argument
79 if($lng){
80 $link = ':'.$this->tns.$lng.':'.$idpart;
81 $name = $lng;
388 $lng = $this->getLangPart($ID);
389 if($lng == $this->defaultlang) return;
/plugin/sketchcanvas/script/
H A Di18next-1.7.2.min.js
H A DSketchCanvas.js35 i18n.init({lng: currentLanguage, fallbackLng: 'en', resources: resources, getAsync: false});
/plugin/authgoogle/google/contrib/
H A DGoogle_CoordinateService.php80 * @param double $lng The longitude 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' …
643 public $lng; variable in Google_Location
663 public function setLng( $lng) { argument
664 $this->lng = $lng;
667 return $this->lng;
H A DGoogle_BloggerService.php1231 public $lng; variable in Google_PostLocation
1240 public function setLng( $lng) { argument
1241 $this->lng = $lng;
1244 return $this->lng;
/plugin/structgeohash/
H A Dscript.js59 mygh = encodeGeoHash(e.latlng.lat, e.latlng.lng);
/plugin/textile2/
H A DclassTextile.php368 if (preg_match("/\[([^]]+)\]/U", $matched, $lng)) {
369 $lang = $lng[1];
370 $matched = str_replace($lng[0], '', $matched);