Lines Matching refs:map
107 $map = $this->getMapOptions($mapOptions);
111 if ($map['width'] || $map['height']) {
112 …$style = $map['width'] ? 'width: '.(is_numeric($map['width']) ? $map['width'].'px' : $map['width']…
113 …$style .= $map['height'] ? 'height: '.(is_numeric($map['height']) ? $map['height'].'px' : $map['he…
120 unset($map['width'],$map['height']);
123 …$lang = ($map['region'] ? '®ion='.$map['region'] : ($this->getConf('region') ? '®ion='.$thi…
124 …$lang .= ($map['language'] ? '&language='.$map['language'] : ($this->getConf('language') ? '&langu…
125 unset($map['region'],$map['language']);
129 foreach ($map as $key => $val) {
156 return array($map['mapID'], $style, $lang, $jsData);
198 $map = $this->defaultMapOptions;
199 $map['mapID'] = ++$this->mapID;
202 if (isset($map[$key])) if ($key=='kml') $map[$key] = $val; else $map[$key] = strtolower($val);
203 if (isset($map[$key])) {
205 $map[$key] = $val;
208 return $map;