Changeset 873 for trunk/Modules/Map/MapAPI.php
- Timestamp:
- Apr 6, 2020, 11:17:40 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Map/MapAPI.php
r864 r873 37 37 function Show() 38 38 { 39 return ('');39 return (''); 40 40 } 41 41 } … … 78 78 if (point) 79 79 { 80 set_return (point.lat() + ";" + point.lng(),"'.$this->OnClickObject.'");80 set_return (point.lat() + ";" + point.lng(),"'.$this->OnClickObject.'"); 81 81 window.close(); 82 82 } … … 102 102 </script>'; 103 103 $Output .= '<div id="map_canvas" style="width: 100%; height: 98%;"></div>'; 104 return ($Output);104 return ($Output); 105 105 } 106 106 } … … 162 162 if (e) 163 163 { 164 set_return (e.latlng.lat + ";" + e.latlng.lng,"'.$this->OnClickObject.'");164 set_return (e.latlng.lat + ";" + e.latlng.lng,"'.$this->OnClickObject.'"); 165 165 window.close(); 166 166 }
Note:
See TracChangeset
for help on using the changeset viewer.