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

react-native-sk-linkedmap

v1.0.13

Published

Map with position linking feature

Downloads

11

Readme

react-native-sk-linkedmap

Create and show maps with position linking and more...

Usage

import React from 'react'
import { Alert, SafeAreaView } from 'react-native'
import LinkedMap, { TMap, TPosition } from 'react-native-sk-linkedmap'

const App = () => {
  const pos: TPosition[] = [
    // create positions with key, title, target and coordinates
  ]

  const [map, setMap] = useState<TMap>({
    key: 'mapexample',
    title: 'Map Example',
    imageSource: '',
    positions: [...pos],
  })

  return (
    <SafeAreaView style={{ flex: 1, backgroundColor: 'lightgray' }}>
      {_renderTestButtons()}
      <LinkedMap
        testID='linkedmap'
        map={map}
        editMode={false}
        hidePositions={false}
        showMenu={true}
        onChange={(map) => { setMap(map) }}
        onClick={(pos) => {
          let _text = `Target: ${pos?.target}`
          let _target = pos?.target
          if (typeof _target === 'object') {
            _text = Object.entries(_target)
              .map((entry) => entry[0] + ': ' + entry[1])
              .join('\n')
          }
          if (Array.isArray(_target)) {
            _text = `Targets [${pos?.target.length}]:\n${_target.join('\n')}`
          }
          Alert.alert(`Position: ${pos?.title}`, `${_text}`)
        }}
        showZoomButtons={true}
        zoomButtonsStyle={{ marginRight: 12, marginBottom: 10, padding: 5, fontSize: 20, width: 40, height: 40 }}
        title={'Example for LinkedMap'}
        titleStyle={{ backgroundColor: 'white', color: 'black', paddingHorizontal: 6, paddingVertical: 2 }}
      />
    </SafeAreaView>
  )
}

Parameter

activePosition [optional]

Type: TPosition
Active position is focused.

customAnimation [optional]

Type: typeof Animated.View
Allows the user to set own custom position animation.

editMode [optional]

Type: Boolean
Enables edit mode to edit map & positions.

hidePositions [optional]

Type: Boolean
If enabled, positions won't be visible on the map (only active position).

map

Type: TMap
Shows the map (and positions).

onChange (map) [optional]

Type: (TMap) => Void
Called when the map / positions are changed.

onClick (position) [optional]

Type: (TPosition) => Void
Called when a position is clicked/pressed.

positionStyle [optional]

Type: ViewStyle
Changes the style of the positions.

showMenu [optional]

Type: Boolean
Shows a menu button to edit maps & positions. Deprecated, use editMode instead.

showZoomButtons [optional]

Type: Boolean
Shows zoom-in, zoom-out & reset-zoom buttons (web-only).

style [optional]

Type: ViewStyle
Changes the style of the component.

testID [optional]

Type: String
Used to locate this component in end-to-end tests.

title [optional]

Type: String
Shows the title above the map.

titleStyle [optional]

Type: TextStyle
Changes the style of the title.

zoomButtonsStyle [optional]

Type: ViewStyle | TextStyle
Changes the style of the zoom buttons.