npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@coconmap/leaflet.cocodoco

v0.0.2

Published

Leaflet plugin to show geographic informations of the place you clicked

Downloads

4

Readme

Leaflet.CocoDoco

This is pre-release

Leaflet.CocoDoco 動作Demo

クリックした地点の位置情報を表示することができる Leaflet.js プラグインです。
Leaflet 地図上で右クリックをすると、その地点の大まかな住所とその土地の標高を知ることができます。
住所を求めるのにはオープンソースかつ無料で利用できる逆ジオコーダー geolonia/open-reverse-geocoder を、 高度を求めるのには 国土地理院の API を用いています。
外部の API を使用していますので、過剰な負荷をかけるような使用はご遠慮ください。

Demo

https://cocon.github.io/Leaflet.CocoDoco/demo/index.html

Usage

プラグインをインストールし、クラスCocoDocoを読み込んでください。 クラスCocoDocoのインスタンスを作成し、ご自身で作成された L.Map インスタンスに追加してあげると Leaflet 地図上にコントロールが追加されます。
CocoDocoコンストラクタは次のような引数を取ります。コントロールを追加する位置を指定することができます。

new CocoDoco({
	position: "topright" | "topleft" | "bottonleft" | "bottonright",
});

CocoDocoインスタンスを地図に追加するには他の Leaflet プラグインと同様にaddToメソッドを用います。 詳しい使い方は下記のコード例を参考にしてください。

With npm (Recommended)

パッケージマネージャやビルドツールを用いる場合の使用例です。

npm install -S @coconmap/leaflet.cocodoco

Sample code

import L from "leaflet";
import { CocoDoco } from "@coconmap/leaflet.cocodoco";

const map = new L.map("my_map", {
	center: [35.4477712, 139.6425415],
	zoom: 13,
});
L.tileLayer("https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", {
	attribution:
		'&copy; <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors',
}).addTo(map);
const cocodoco = new CocoDoco({
	position: "topleft",
});
cocodoco.addTo(map);

From CDN

CDN からコードをダウンロードして使うことができます。ただ、その際 Leaflet.js の読み込みが先になるようにご注意ください(本ライブラリが Leaflet.js に依存しているため)。

<script src="https://cdn.jsdelivr.net/npm/@coconmap/leaflet.cocodoco@latest/dist/bundle.js"></script>

Sample code

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8" />
		<!-- まずLeaflet.jsに同梱のスタイルファイルを -->
		<link
			rel="stylesheet"
			href="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.css"
		/>
		<!-- 次にLeaflet.js本体を -->
		<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.js"></script>
		<!-- 本プラグインは最後に読み込んでください -->
		<script src="https://cdn.jsdelivr.net/npm/@coconmap/leaflet.cocodoco@latest/dist/bundle.js"></script>
	</head>

	<body>
		<div id="my_map" style="width: 500px; height: 500px;"></div>
		<script>
			const map = new L.map("my_map", {
				center: [35.4477712, 139.6425415],
				zoom: 13,
			});
			L.tileLayer("https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", {
				attribution:
					'&copy; <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors',
			}).addTo(map);
			const cocodoco = new CocoDoco({
				position: "topleft",
			});
			cocodoco.addTo(map);
		</script>
	</body>
</html>

Author

ToriChan(@CoconMap)

ご不明点などあれば気軽にお声がけください!