Ignore:
Timestamp:
Apr 14, 2015, 10:20:16 PM (9 years ago)
Author:
chronos
Message:
  • Removed: Spaces on end of line.
  • Modified: Tabs converted to spaces.
File:
1 edited

Legend:

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

    r574 r738  
    11<?php
    22
    3 class MapApi extends Model 
     3class MapApi extends Model
    44{
    55  var $Position;
     
    99  var $ShowMarker;
    1010  var $MarkerText;
    11  
     11
    1212  function __construct($System)
    1313  {
    1414    parent::__construct($System);
    15     $this->Zoom = 2; 
     15    $this->Zoom = 2;
    1616    $this->Position = array('Lat' => 40.178873, 'Lng' => 65.039062);
    1717    $this->Key = '';
    1818    $this->ShowMarker = false;
    19     $this->MarkerText = ''; 
     19    $this->MarkerText = '';
    2020  }
    21  
     21
    2222  function Show()
    2323  {
     
    3939      </script>';
    4040    $Output .= '<script type="text/javascript">
    41    
     41
    4242    var map;
    4343    var tinyIcon;
    44    
     44
    4545    function initialize()
    4646    {
     
    5252        map.setUIToDefault();
    5353        map.addControl(new GOverviewMapControl(new GSize(128, 96)));
    54    
     54
    5555        GEvent.addListener(map,"click",function(overlay, point)
    5656        {
     
    6161        });
    6262      }
    63    
     63
    6464    // Create our "tiny" marker icon
    6565    var tinyIcon = new GIcon();
     
    8484class MapApiSeznam extends MapApi
    8585{
    86  
     86
    8787}
Note: See TracChangeset for help on using the changeset viewer.