Skip to content

Instantly share code, notes, and snippets.

@KMR-zoar
Last active August 29, 2015 14:17
Show Gist options
  • Save KMR-zoar/549027c0f9d910de502e to your computer and use it in GitHub Desktop.
Save KMR-zoar/549027c0f9d910de502e to your computer and use it in GitHub Desktop.
//main.js の最後に追記する
//中心十字線表示
var crossline = L.control({
position: 'bottomleft'
});
crossline.onAdd = function (map) {
var div = L.DomUtil.create('div', 'crossline');
div.innerHTML = '<div id="cross"><img src="./img/center.png" alt="中心線" /></div>';
return div;
};
crossline.addTo(map);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment