Ignore:
Timestamp:
Apr 6, 2020, 11:17:40 PM (4 years ago)
Author:
chronos
Message:
  • Modified: Improved code format.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Map/MapAPI.php

    r864 r873  
    3737  function Show()
    3838  {
    39     return('');
     39    return ('');
    4040  }
    4141}
     
    7878          if (point)
    7979          {
    80             set_return(point.lat() + ";" + point.lng(),"'.$this->OnClickObject.'");
     80            set_return (point.lat() + ";" + point.lng(),"'.$this->OnClickObject.'");
    8181            window.close();
    8282          }
     
    102102    </script>';
    103103    $Output .= '<div id="map_canvas" style="width: 100%; height: 98%;"></div>';
    104     return($Output);
     104    return ($Output);
    105105  }
    106106}
     
    162162          if (e)
    163163          {
    164             set_return(e.latlng.lat + ";" + e.latlng.lng,"'.$this->OnClickObject.'");
     164            set_return (e.latlng.lat + ";" + e.latlng.lng,"'.$this->OnClickObject.'");
    165165            window.close();
    166166          }
Note: See TracChangeset for help on using the changeset viewer.