Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
prtksxna committed Jun 30, 2014
0 parents commit 4ca82d6
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
@@ -0,0 +1,3 @@
**/.*
**/*~
bower_components/
28 changes: 28 additions & 0 deletions bower.json
@@ -0,0 +1,28 @@
{
"name": "leaftlet-map-component",
"version": "0.0.0",
"authors": [
"Prateek Saxena <prtksxna@gmail.com>"
],
"description": "A polymer component to show a leatlet map",
"main": "leaftleft-map-component.html",
"keywords": [
"polymer",
"web-component",
"osm",
"map",
"leaflet"
],
"license": "MIT",
"homepage": "http://github.com/prtksxna/leaflet-map-component",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
],
"dependencies": {
"polymer": "~0.3.3"
}
}
11 changes: 11 additions & 0 deletions index.html
@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script src="bower_components/platform/platform.js"></script>
<link rel="import" href="leaflet-map-component.html">
</head>
<body unresolved>
<leaflet-map></leaflet-map>
</body>
</html>
7 changes: 7 additions & 0 deletions leaflet-map-component.html
@@ -0,0 +1,7 @@
<link rel="import" href="bower_components/polymer/polymer.html">

<polymer-element name="leaflet-map" noscript>
<template>
<div id="map"></div>
</template>
</polymer-element>

0 comments on commit 4ca82d6

Please sign in to comment.