Browse Source

+ файл

master
root 8 years ago
parent
commit
5889bc57c5
  1. 419
      gmap/class.gmap.php
  2. BIN
      gmap/images/10.png
  3. BIN
      gmap/images/100.png
  4. BIN
      gmap/images/101.png
  5. BIN
      gmap/images/102.png
  6. BIN
      gmap/images/103.png
  7. BIN
      gmap/images/104.png
  8. BIN
      gmap/images/105.png
  9. BIN
      gmap/images/106.png
  10. BIN
      gmap/images/107.png
  11. BIN
      gmap/images/108.png
  12. BIN
      gmap/images/109.png
  13. BIN
      gmap/images/11.png
  14. BIN
      gmap/images/110.png
  15. BIN
      gmap/images/111.png
  16. BIN
      gmap/images/112.png
  17. BIN
      gmap/images/113.png
  18. BIN
      gmap/images/114.png
  19. BIN
      gmap/images/115.png
  20. BIN
      gmap/images/116.png
  21. BIN
      gmap/images/117.png
  22. BIN
      gmap/images/118.png
  23. BIN
      gmap/images/119.png
  24. BIN
      gmap/images/12.png
  25. BIN
      gmap/images/120.png
  26. BIN
      gmap/images/121.png
  27. BIN
      gmap/images/122.png
  28. BIN
      gmap/images/123.png
  29. BIN
      gmap/images/124.png
  30. BIN
      gmap/images/125.png
  31. BIN
      gmap/images/126.png
  32. BIN
      gmap/images/127.png
  33. BIN
      gmap/images/128.png
  34. BIN
      gmap/images/129.png
  35. BIN
      gmap/images/13.png
  36. BIN
      gmap/images/130.png
  37. BIN
      gmap/images/131.png
  38. BIN
      gmap/images/132.png
  39. BIN
      gmap/images/133.png
  40. BIN
      gmap/images/134.png
  41. BIN
      gmap/images/135.png
  42. BIN
      gmap/images/136.png
  43. BIN
      gmap/images/137.png
  44. BIN
      gmap/images/138.png
  45. BIN
      gmap/images/139.png
  46. BIN
      gmap/images/14.png
  47. BIN
      gmap/images/140.png
  48. BIN
      gmap/images/141.png
  49. BIN
      gmap/images/142.png
  50. BIN
      gmap/images/143.png
  51. BIN
      gmap/images/144.png
  52. BIN
      gmap/images/145.png
  53. BIN
      gmap/images/146.png
  54. BIN
      gmap/images/147.png
  55. BIN
      gmap/images/148.png
  56. BIN
      gmap/images/149.png
  57. BIN
      gmap/images/15.png
  58. BIN
      gmap/images/150.png
  59. BIN
      gmap/images/151.png
  60. BIN
      gmap/images/152.png
  61. BIN
      gmap/images/153.png
  62. BIN
      gmap/images/154.png
  63. BIN
      gmap/images/155.png
  64. BIN
      gmap/images/156.png
  65. BIN
      gmap/images/157.png
  66. BIN
      gmap/images/158.png
  67. BIN
      gmap/images/159.png
  68. BIN
      gmap/images/16.png
  69. BIN
      gmap/images/160.png
  70. BIN
      gmap/images/161.png
  71. BIN
      gmap/images/162.png
  72. BIN
      gmap/images/163.png
  73. BIN
      gmap/images/164.png
  74. BIN
      gmap/images/165.png
  75. BIN
      gmap/images/166.png
  76. BIN
      gmap/images/167.png
  77. BIN
      gmap/images/168.png
  78. BIN
      gmap/images/169.png
  79. BIN
      gmap/images/17.png
  80. BIN
      gmap/images/170.png
  81. BIN
      gmap/images/171.png
  82. BIN
      gmap/images/172.png
  83. BIN
      gmap/images/173.png
  84. BIN
      gmap/images/174.png
  85. BIN
      gmap/images/175.png
  86. BIN
      gmap/images/176.png
  87. BIN
      gmap/images/177.png
  88. BIN
      gmap/images/178.png
  89. BIN
      gmap/images/179.png
  90. BIN
      gmap/images/18.png
  91. BIN
      gmap/images/180.png
  92. BIN
      gmap/images/181.png
  93. BIN
      gmap/images/182.png
  94. BIN
      gmap/images/183.png
  95. BIN
      gmap/images/184.png
  96. BIN
      gmap/images/185.png
  97. BIN
      gmap/images/186.png
  98. BIN
      gmap/images/187.png
  99. BIN
      gmap/images/188.png
  100. BIN
      gmap/images/189.png
  101. Some files were not shown because too many files have changed in this diff Show More

419
gmap/class.gmap.php

@ -0,0 +1,419 @@
<?php
/**
* Класс работы с картами
*
* @package AVE.cms
* @subpackage module_gmap
* @filesource
*/
class Gmap
{
/**
* ФУНКЦИИ ПУБЛИЧНОЙ ЧАСТИ
*/
/**
* Вывод карты
*
* @param int $gmap_id - идентификатор карты
*/
function gmapShow($tpl_dir, $gmap_id)
{
global $AVE_DB, $AVE_Template;
$sql = $AVE_DB->Query("
SELECT *
FROM " . PREFIX . "_module_gmap
WHERE id = '" . $gmap_id . "'
");
$row_gs = $sql->FetchAssocArray();
$sql = $AVE_DB->Query("
SELECT *
FROM " . PREFIX . "_module_gmap_markers
WHERE gmap_id = '" . $gmap_id . "'
");
$markers = array();
while ($row = $sql->FetchAssocArray())
{
array_push($markers, $row);
}
$AVE_Template->assign('gmap', $row_gs);
$AVE_Template->assign('markers', json_encode($markers));
$AVE_Template->display($tpl_dir . 'map.tpl');
}
/**
* ФУНКЦИИ АДМИНИСТРАТИВНОЙ ЧАСТИ
*/
/**
* Просмотр маркеров карты и добавление новых в админке
*
* @param string $tpl_dir - путь к папке с шаблонами модуля
* @param int $gmap_id - идентификатор карты
*/
function gmapMarkersShow($tpl_dir, $gmap_id)
{
global $AVE_DB, $AVE_Template;
$pin_dir = BASE_DIR.'/modules/gmap/images';
$pin_base_dir = ABS_PATH.'modules/gmap/images';
$pins = array();
if ($handle = opendir($pin_dir . '/')) {
while (false !== ($file = readdir($handle)))
{
if ($file != '.' && $file != '..')
{
$image_title = substr($file, 0, -4);
$upload_file_ext = strtolower(substr($file, -4));
$upload_filename = prepare_fname($image_title) . $upload_file_ext;
if (!empty($upload_filename) && $upload_file_ext == '.png')
{
$pins[] = array('name' => $image_title, 'path' => $pin_base_dir . '/' . $upload_filename);
}
}
}
closedir($handle);
}
$sql = $AVE_DB->Query("
SELECT *
FROM " . PREFIX . "_module_gmap
WHERE id = '" . $gmap_id . "'
");
$row_gs = $sql->FetchAssocArray();
$sql = $AVE_DB->Query("
SELECT *
FROM " . PREFIX . "_module_gmap_markers
WHERE gmap_id = '" . $gmap_id . "'
");
$load_markers = array();
while ($row = $sql->FetchAssocArray())
{
array_push($load_markers, $row);
}
$limit = 5;
$start = get_current_page() * $limit - $limit;
$sql = $AVE_DB->Query("
SELECT SQL_CALC_FOUND_ROWS *
FROM " . PREFIX . "_module_gmap_markers
WHERE gmap_id = '" . $gmap_id . "'
ORDER BY id ASC
LIMIT " . $start . "," . $limit . "
");
$sql_num = $AVE_DB->Query("SELECT FOUND_ROWS()");
$num = $sql_num->GetCell();
$markers = array();
while ($row = $sql->FetchAssocArray())
{
array_push($markers, $row);
}
if ($num > $limit)
{
$page_nav = ' <a class="pnav" href="index.php?do=modules&action=modedit&mod=gmap&moduleaction=show&id=' . $gmap_id . '&page={s}&amp;cp=' . SESSION . '">{t}</a> ';
$page_nav = get_pagination(ceil($num / $limit), 'page', $page_nav);
}
else
{
$page_nav = '';
}
$AVE_Template->assign('page_nav', $page_nav);
$AVE_Template->assign('gmap', $row_gs);
$AVE_Template->assign('gmap_id', $row_gs['id']);
$AVE_Template->assign('gmap_title', $row_gs['gmap_title']);
$AVE_Template->assign('markers', $markers);
$AVE_Template->assign('load_markers', json_encode($load_markers));
$AVE_Template->assign('pins', $pins);
$AVE_Template->assign('content', $AVE_Template->fetch($tpl_dir . 'admin_gmap_markers.tpl'));
}
/**
* Вывод списка карт
*
* @param string $tpl_dir - путь к папке с шаблонами модуля
*/
function gmapListShow($tpl_dir)
{
global $AVE_DB, $AVE_Template;
$gmaps = array();
$limit = 20;
$start = get_current_page() * $limit - $limit;
$sql = $AVE_DB->Query("
SELECT SQL_CALC_FOUND_ROWS
g.*,
COUNT(m.id) AS marker_count
FROM
" . PREFIX . "_module_gmap AS g
LEFT JOIN
" . PREFIX . "_module_gmap_markers AS m
ON m.gmap_id = g.id
GROUP BY g.id
ORDER BY g.id ASC
LIMIT " . $start . "," . $limit . "
");
$sql_num = $AVE_DB->Query("SELECT FOUND_ROWS()");
$num = $sql_num->GetCell();
while($row = $sql->FetchAssocArray())
{
array_push($gmaps, $row);
}
if ($num > $limit)
{
$page_nav = "<li><a href=\"index.php?do=modules&action=modedit&mod=gmap&moduleaction=1&page={s}&amp;cp=" . SESSION . "\">{t}</a></li>";
$page_nav = get_pagination(ceil($num / $limit), 'page', $page_nav);
}
else
{
$page_nav = '';
}
$AVE_Template->assign('page_nav', $page_nav);
if (!empty($_REQUEST['alert']))
{
$AVE_Template->assign('alert', htmlspecialchars(stripslashes($_REQUEST['alert'])));
}
$AVE_Template->assign('gmaps', $gmaps);
$AVE_Template->assign('formaction', 'index.php?do=modules&action=modedit&mod=gmap&moduleaction=new&sub=save&amp;cp=' . SESSION);
$AVE_Template->assign('content', $AVE_Template->fetch($tpl_dir . 'admin_gmap_list.tpl'));
}
/**
* Сохранение маркеров
*
* @param int $gmap_id - идентификатор карты
*/
function gmapMarkersAdd($gmap_id){
if (isset($_POST['marker']))
{
global $AVE_DB;
$markerData = $_POST['marker'];
$sql = "
INSERT
INTO " . PREFIX . "_module_gmap_markers
SET
id = '',
gmap_id = '".(int)$gmap_id."',
latitude = '" . $markerData['latitude'] . "',
longitude = '" . $markerData['longitude'] . "',
title = '" . $markerData['title'] . "',
image = '" . $markerData['image']. "'
";
$AVE_DB->Query($sql);
$markerData['id'] = $AVE_DB->InsertId();
echo json_encode($markerData);
exit;
}
}
/**
* Сохранение редактирования описания маркера
*
* @param int $id - идентификатор маркера
*/
function gmapMarkerSave($id){
if (isset($_POST['marker_title']))
{
global $AVE_DB;
$markerData = $_POST['marker_title'];
$sql = "UPDATE " . PREFIX . "_module_gmap_markers
SET
title = '" . $markerData . "' WHERE id = '" . (int)$id. "'
";
$AVE_DB->Query($sql);
}
exit;
}
/**
* Удаление маркера
*
* @param int $id - идентификатор маркера
*/
function gmapMarkersDel($id){
global $AVE_DB;
$sql = "DELETE FROM " . PREFIX . "_module_gmap_markers WHERE id = '" . (int)$id. "'";
$AVE_DB->Query($sql);
exit;
}
/**
* Получение описания маркера
*
* @param int $id - идентификатор маркера
*/
function gmapMarkersGet($id){
global $AVE_DB;
$sql = $AVE_DB->Query("
SELECT *
FROM " . PREFIX . "_module_gmap_markers
WHERE id = '" . $id . "'
");
$row_gs = $sql->FetchRow();
echo $row_gs->title;
exit;
}
/**
* Создание карты
*
*/
function gmapNew()
{
if (isset($_REQUEST['sub']) && $_REQUEST['sub'] == 'save')
{
global $AVE_DB;
$cont = true;
$alert = '';
if (empty($_POST['gmap_title']))
{
$alert = '&alert=empty_gmap_title';
$cont = false;
}
if ($cont)
{
$AVE_DB->Query("
INSERT
INTO " . PREFIX . "_module_gmap
SET
id = '',
gmap_title = '" . $_POST['gmap_title'] . "',
gmap_height = '" . $_POST['gmap_height'] . "',
gmap_width = '" . $_POST['gmap_width'] . "',
longitude = '" . $_POST['longitude'] . "',
latitude = '" . $_POST['latitude'] . "',
gmap_zoom = '" . (int)$_POST['gmap_zoom'] . "'
");
}
header('Location:index.php?do=modules&action=modedit&mod=gmap&moduleaction=1'. $alert);
exit;
}
}
/**
* Редактирование карты
*
* @param string $tpl_dir - путь к папке с шаблонами модуля
* @param int $gmap_id - идентификатор карты
*/
function gmapEdit($tpl_dir, $gmap_id)
{
global $AVE_DB, $AVE_Template;
if (isset($_REQUEST['sub']) && $_REQUEST['sub'] == 'save')
{
$AVE_DB->Query("
UPDATE " . PREFIX . "_module_gmap
SET
gmap_title = '" . $_POST['gmap_title'] . "',
gmap_height = '" . $_POST['gmap_height'] . "',
gmap_width = '" . $_POST['gmap_width'] . "',
longitude = '" . $_POST['longitude'] . "',
latitude = '" . $_POST['latitude'] . "',
gmap_zoom = '" . (int)$_POST['gmap_zoom'] . "'
WHERE
id = '" . (int)$gmap_id . "'
");
header('Location:index.php?do=modules&action=modedit&mod=gmap&moduleaction=1&amp;cp=' . SESSION);
exit;
}
$sql = $AVE_DB->Query("
SELECT *
FROM " . PREFIX . "_module_gmap
WHERE id = '" . (int)$gmap_id . "'
");
$row = $sql->FetchAssocArray();
$AVE_Template->assign('gmap', $row);
$AVE_Template->assign('content', $AVE_Template->fetch($tpl_dir . 'admin_gmap_edit.tpl'));
}
/**
* Удаление карты
*
* @param int $gmap_id - идентификатор карты
*/
function gmapDelete($gmap_id)
{
global $AVE_DB;
$AVE_DB->Query("DELETE FROM " . PREFIX . "_module_gmap WHERE id = '" . $gmap_id . "'");
$AVE_DB->Query("DELETE FROM " . PREFIX . "_module_gmap_markers WHERE gmap_id = '" . $gmap_id . "'");
header('Location:index.php?do=modules&action=modedit&mod=gmap&moduleaction=1&amp;cp=' . SESSION);
exit;
}
}
?>

BIN
gmap/images/10.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
gmap/images/100.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

BIN
gmap/images/101.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

BIN
gmap/images/102.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
gmap/images/103.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

BIN
gmap/images/104.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

BIN
gmap/images/105.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

BIN
gmap/images/106.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

BIN
gmap/images/107.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
gmap/images/108.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

BIN
gmap/images/109.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

BIN
gmap/images/11.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
gmap/images/110.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

BIN
gmap/images/111.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

BIN
gmap/images/112.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
gmap/images/113.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

BIN
gmap/images/114.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
gmap/images/115.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

BIN
gmap/images/116.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
gmap/images/117.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
gmap/images/118.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

BIN
gmap/images/119.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

BIN
gmap/images/12.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

BIN
gmap/images/120.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

BIN
gmap/images/121.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
gmap/images/122.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

BIN
gmap/images/123.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

BIN
gmap/images/124.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

BIN
gmap/images/125.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

BIN
gmap/images/126.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
gmap/images/127.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
gmap/images/128.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

BIN
gmap/images/129.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

BIN
gmap/images/13.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

BIN
gmap/images/130.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

BIN
gmap/images/131.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
gmap/images/132.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
gmap/images/133.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
gmap/images/134.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
gmap/images/135.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

BIN
gmap/images/136.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

BIN
gmap/images/137.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

BIN
gmap/images/138.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
gmap/images/139.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

BIN
gmap/images/14.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
gmap/images/140.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
gmap/images/141.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

BIN
gmap/images/142.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

BIN
gmap/images/143.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

BIN
gmap/images/144.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
gmap/images/145.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

BIN
gmap/images/146.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

BIN
gmap/images/147.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

BIN
gmap/images/148.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
gmap/images/149.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
gmap/images/15.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
gmap/images/150.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

BIN
gmap/images/151.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
gmap/images/152.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

BIN
gmap/images/153.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
gmap/images/154.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
gmap/images/155.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

BIN
gmap/images/156.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

BIN
gmap/images/157.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
gmap/images/158.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
gmap/images/159.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
gmap/images/16.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

BIN
gmap/images/160.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
gmap/images/161.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
gmap/images/162.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
gmap/images/163.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

BIN
gmap/images/164.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
gmap/images/165.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

BIN
gmap/images/166.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

BIN
gmap/images/167.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

BIN
gmap/images/168.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

BIN
gmap/images/169.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
gmap/images/17.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
gmap/images/170.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

BIN
gmap/images/171.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

BIN
gmap/images/172.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

BIN
gmap/images/173.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
gmap/images/174.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

BIN
gmap/images/175.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

BIN
gmap/images/176.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

BIN
gmap/images/177.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

BIN
gmap/images/178.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
gmap/images/179.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

BIN
gmap/images/18.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

BIN
gmap/images/180.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

BIN
gmap/images/181.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
gmap/images/182.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

BIN
gmap/images/183.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

BIN
gmap/images/184.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
gmap/images/185.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

BIN
gmap/images/186.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

BIN
gmap/images/187.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

BIN
gmap/images/188.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

BIN
gmap/images/189.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save