-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.php
40 lines (29 loc) · 1.15 KB
/
config.php
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
<?php
$_CONFIG = array(
// map config - get api keys here: http://code.google.com/apis/maps/signup.html
'map_id' => '106334744368984760171.000450193d2d16b5f7142',
// map settings
'centerpoint' => array('lat' => '50.828493', 'lng' => '-0.15604'),
'zoomlevel' => '14',
'mobileZoomLevel' => '16',
'maptype' => 'normal',
// site details - change domain to match api key registered, include http://
'domain' => 'http://onepagemapsite.local',
'site_title' => '@joshr\'s Geek Hangouts',
'site_description' => 'Places to work, eat, and meet in Brighton and Hove',
'stylesheet_url' => '/screen.css',
// mobile styles not perfect, want to fix it? :)
'mobile_stylesheet_url' => '/mobile.css',
// optional extras
'twitter_id' => 'joshr',
// a username from addthis.com, for stats
'addthis_id' => '',
// analytics id looks like UA-xxxxxx-xx
'analytics_id' => '',
'marker_image' => 'http://www.google.com/mapfiles/marker.png',
'marker_shadow_image' => 'http://www.google.com/mapfiles/shadow50.png',
// to display a google ad in the bottom half of the left bar
'google_ad_client' => '',
'google_ad_slot' => ''
);
?>