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

@wirecase/simple-greeting

v1.3.0

Published

A limited use case of google maps with clickable markers. Great for your basic use case, should be got do go every where lit element is served.

Downloads

3

Readme

wirecase-google-maps

A limited use case of google maps with clickable markers. Great for your basic use case, should be got do go every where lit element is served.

Using wirecase-google-maps

Before you start

You will be needing your own api key from google. Since this key is passed as a parameter on the url you can't hid it so make sure you restrict it according to your use case. You can set up your own api key at Googles Developer Console.

Getting the element on the page

installing

This component is in the npm registry so you can just.

npm i @wirecase/google-maps

in you project directory.

using

This lit element is written as a module so you can use the following.

<script src="google-maps.js"></script>

or

import "@wirecase/google-maps";

Into your project then call it and pass your key to the apiKey property.

properties:
apiKey: API_KEY, // Your google maps api key
value:  // an array of objects that represent map markers. Setter so property must be assigned with = opperator to work properly
  [{
    position: {lat: Your lat, lgn: Your long}
  }];
isView:false, // if edit marker

Sample

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <meta
      name="viewport"
      content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes"
    />
    <title>google-maps demo</title>
    <script defer src="google-maps.js"></script>
  </head>
  <body>
    <div class="vertical-section-container">
      <h3>Basic google-maps demo</h3>
      <wirecase-google-maps
        style="height:65vh;width:80vw"
        selectLocationMode
        apiKey="apikey"
      ></wirecase-google-maps>
      <script src="webcomponents-loader.js"></script>
      <script>
        const googleMapsRef = document.querySelector("wirecase-google-maps");
        googleMapsRef.onValueChange = function(value) {
          console.log(value);
        };

        googleMapsRef.value = [
          {
            position: { lat: 41, lng: -112 }
          },
          {
            position: { lat: 33, lng: -117 }
          },
          {
            position: { lat: 29, lng: -82 }
          },
          {
            position: { lat: 43, lng: -70 }
          }
        ];
      </script>
    </div>
  </body>
</html>

Install the Polymer-CLI

First, make sure you have the Polymer CLI and npm (packaged with Node.js) installed. Run npm install to install your element's dependencies, then run polymer serve to serve your element locally. Right now the api key is hard coded for the demo. A pr is forth coming where you will have to enter it in some way. For now please be kind with your demo usage.

Viewing Your changes


\$ polymer serve