-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgooglemapsapi.php
More file actions
32 lines (27 loc) · 1.24 KB
/
googlemapsapi.php
File metadata and controls
32 lines (27 loc) · 1.24 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
<?php
/* ========================================================================
*
* @license This source file is subject to version 3.01 of the PHP license,
* that is available at http://www.php.net/license/3_01.txt
* If you did not receive a copy of the PHP license and are unable
* to obtain it through the world-wide-web, please send a note to
* license@php.net so we can mail you a copy immediately.
*
* @category Application of MyNETS
* @project OpenPNE UsagiProject 2006-2007
* @package MyNETS
* @author UsagiProject <info@usagi.mynets.jp>
* @authoe Kazuo Ide [K&X inc.] UsagiProject
* @copyright 2006-2007 UsagiProject <author member ad http://usagi.mynets.jp/member.html>
* @version MyNETS,v 1.0.0
* @since File available since Release 1.0.0 Nighty
* @chengelog [2007/02/17] Ver1.1.0Nighty package
* ========================================================================
*/
require_once './config.inc.php';
header('Content-Type: text/javascript; charset=UTF-8');
$html = "document.writeln('<script src=\"http://maps.google.co.jp/maps?file=api&v=2.89&key="
. GOOGLE_MAPS_API_KEY
. "\" type=\"text/javascript\"></script>');";
print($html);
?>