mirror of
https://github.com/webbukkit/dynmap.git
synced 2025-02-05 14:31:55 +01:00
dfbd69f64e
- Changed format of markers.txt to colon delimited instead of comma (no need to change anything, plugin will read both types and save in the new format) - Added support for warps/homes/spawn from data source (either flatfile or mysql) - Renamed images to be more specific to what they represent (marker = marker.png) for you customizers. - Added fix to mapUpdate to keep marker/player names from conflicting
36 lines
1.5 KiB
HTML
36 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<meta name="description" content="Minecraft Dynamic Map" />
|
|
<meta name="keywords" content="minecraft, map, dynamic" />
|
|
<meta name="language" content="en"/>
|
|
<title>
|
|
Minecraft Dynamic Map
|
|
</title>
|
|
<link rel="shortcut icon" href="follow_off.png" type="image/png" />
|
|
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
|
|
<link rel="stylesheet" type="text/css" href="style.css" media="screen" />
|
|
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
|
|
<script type="text/javascript" src="map.js" ></script>
|
|
</head>
|
|
<body>
|
|
<div id="mcmap"></div>
|
|
<div id="plist"><img id="plistbtn" alt="on" src="list_on.png" onclick="plistopen()" title="Player list" />
|
|
<div id="lst">[Connecting]</div>
|
|
</div>
|
|
<div id="controls">
|
|
<form action="#" method="get">
|
|
<img src="warp.png" alt="Warps" title="Warps" />
|
|
<input type="checkbox" checked="checked" id="showWarps" /><br />
|
|
<img src="marker.png" alt="Markers" title="Markers" />
|
|
<input type="checkbox" checked="checked" id="showMarkers" /><br />
|
|
<img src="home.png" alt="Homes" title="Homes" />
|
|
<input type="checkbox" checked="checked" id="showHomes" /><br />
|
|
<img src="spawn.png" alt="Spawn" title="Spawn" />
|
|
<input type="checkbox" checked="checked" id="showSpawn" /><br />
|
|
</form>
|
|
</div>
|
|
<div id="link"></div>
|
|
</body>
|
|
</html> |