gabrielesbaiz/nova-card-map 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

gabrielesbaiz/nova-card-map

最新稳定版本:1.0.0

Composer 安装命令:

composer require gabrielesbaiz/nova-card-map

包简介

Custom Laravel Nova 4 map card.

README 文档

README

Latest Version on Packagist Total Downloads

Custom Laravel Nova 4 map card.

Original code from iMuMz/NovaCardMap

Features

  • ✅ Support Leaflet
  • ✅ Support Google Maps
  • ✅ Marker clustering
  • ✅ Map height
  • ✅ Latitude and longitude coordinates
  • ✅ GeoJSON
  • ✅ Marker popup
  • ✅ Custom marker icons

Installation

You can install the package via composer:

composer require gabrielesbaiz/nova-card-map

Usage

use Gabrielesbaiz\NovaCardMap;


(new NovaCardMap())->width("1/2")

Available Methods

Height

(new NovaCardMap())
->height('400px') // default is 300px

Google Maps

By default the provider is OpenStreetMaps.
You must set your Google Maps API key (https://developers.google.com/maps/documentation/javascript/get-api-key).

(new NovaCardMap())
->googleApiKey('')
->googleMapType('roadmap'), // roadmap, satellite or hybrid

Latitude / Longitude (Point)

(new NovaCardMap())
->type('LatLon')
->point('-6.081689','145.391881')

GeoJSON

(new NovaCardMap())
->type('GeoJson')
->geoJson('')

GeoJson Example

{
  "type": "FeatureCollection",
  "features": [
    {
      "type": "Feature",
      "properties": {
        "popup": "I am a Popup"
      },
      "geometry": {
        "type": "Point",
        "coordinates": [
          23.8623046875,
          -30.221101852485987
        ]
      }
    }
  ]
}

Popup

(new NovaCardMap())
->popup('popup')

Custom Marker Icon

(new NovaCardMap())
->markerIcon('/images/marker-icon.png')

You can pass additional parameters to set the icon size and anchor

->markerIcon('/images/marker-icon.png',[100,100],[50,50])

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.

统计信息

  • 总下载量: 956
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-03-03