1<?php 2 3/* 4 * Copyright (c) 2008-2017 Mark C. Prins <mprins@users.sf.net> 5 * 6 * Permission to use, copy, modify, and distribute this software for any 7 * purpose with or without fee is hereby granted, provided that the above 8 * copyright notice and this permission notice appear in all copies. 9 * 10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 17 */ 18 19/** 20 * OL maps plugin, default configuration settings. 21 * 22 * @author Mark C. Prins 23 */ 24 25$conf['bingAPIKey'] = ''; 26$conf['tfApiKey'] = ''; 27$conf['iconUrlOverload'] = ''; 28$conf['enableStadia'] = 0; 29$conf['enableGoogle'] = 0; 30$conf['googleAPIkey'] = ''; 31$conf['enableOSM'] = 1; 32$conf['enableBing'] = 0; 33$conf['enableA11y'] = 1; 34$conf['optionStaticMapGenerator'] = 'local'; 35$conf['autoZoomMap'] = 1; 36$conf['displayformat'] = 'DD'; 37$conf['default_id'] = 'olmap'; //invisible 38$conf['default_width'] = '550px'; 39$conf['default_height'] = '450px'; 40$conf['default_lat'] = 50.0; //invisible 41$conf['default_lon'] = 5.1; //invisible 42$conf['default_zoom'] = 12; 43$conf['default_autozoom'] = $conf['autoZoomMap']; //invisible; duplicate for internal use 44$conf['default_controls'] = 1; 45$conf['default_baselyr'] = 'OpenStreetMap'; //invisible 46$conf['default_kmlfile'] = ''; 47$conf['default_gpxfile'] = ''; 48$conf['default_geojsonfile'] = ''; 49$conf['default_summary'] = ''; //invisible 50