contact.php
2.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
/**
* @var $this yii\web\View
*/
$this->title = 'Контакты';
$this->params[ 'breadcrumbs' ][] = $this->title;
?>
<div class="section-box box-title-1 uppercase"><?= $this->title; ?></div>
<div class="section-box box-brand margin_bottom_30">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 title-contacts">Центральный офис</div>
<div class="col-xs-12 col-sm-12 col-md-12 service-txt">
<p>Адрес: г. Киев, ул. Богатырская, 11, оф. 703 </p>
<p>
Тел. основной: (044) 503-73-76,<br/>
Контрактный отдел: (044) 503-00-33,<br/>
Отдел по работе с дизайнерами и архитекторами: (044) 503-00-30
</p>
<div id="contact-map" style="height:600px; width: 100%"></div>
<p>e-mail: info@witex.ua</p>
<?php
$this->registerJs("
function initMap() {
var myLatLng = {lat: 50.524860, lng: 30.482552};
var map = new google.maps.Map(document.getElementById('contact-map'), {
zoom: 17,
center: myLatLng
});
var marker = new google.maps.Marker({
position: myLatLng,
map: map,
title: 'ВІТЕКС УКРАЇНА!'
});
}
", $this::POS_BEGIN);
?>
<?php
$this->registerJsFile('https://maps.googleapis.com/maps/api/js?key=AIzaSyCaeB8Lppsl-JqjsGWVHxxMQ3WqU8vGlOQ&callback=initMap');
?>
</div>
<div class="col-xs-12 col-sm-12 col-md-12 title-contacts">Восточная дирекция</div>
<div class="col-xs-12 col-sm-12 col-md-12 service-txt">
<p>Тел: (067) 620-30-70</p>
<p>
e-mail: arcady.aviraimov@witex.com.ua, <br/>
e-mail: arcady.aviraimov@witex.com.ua, <br/>
dmitriy.goloperov@witex.com.ua
</p>
</div>
</div>
</div>