andrewdanilov/yii2-yandexmap
Composer 安装命令:
composer require andrewdanilov/yii2-yandexmap
包简介
Yandex map
关键字:
README 文档
README
Widget loads yandex map and places marks on it provided with array or with handler url on json file.
Installation
The preferred way to install this extension is through composer.
Either run
composer require andrewdanilov/yii2-yandexmap "~1.0.0"
or add
"andrewdanilov/yii2-yandexmap": "~1.0.0"
to the require section of your composer.json file.
Usage
<?= \andrewdanilov\yandexmap\YandexMap::widget([ 'id' => 'some-unique-dom-id', // optional, an ID applied to widget wrapper 'apikey' => '', // optional, yandex map api key 'center' => [ 'latitude' => '52.449837', 'longitude' => '-1.930617', ], // or in short 'center' => ['52.449837', '-1.930617'] 'zoom' => 14, // optional, default 12 'points' => [ [ 'id' => 'point-1', 'title' => 'Point 1 Caption', 'text' => 'Point 1 Text (html allowed)', 'color' => '#00ff00', 'latitude' => '52.449837', 'longitude' => '-1.930617', ], [ 'id' => 'point-2', 'title' => 'Point 2 Caption', 'text' => 'Point 2 Text (html allowed)', 'color' => '#0000ff', 'latitude' => '52.449845', 'longitude' => '-1.930029', ], ], //'pointsUrl' => '/points.json', // url used to get an array of points instead of manual setting the 'points' param 'scroll' => true, // optional, zoom map by scrolling, default false 'wrapperTag' => 'div', // optional, html tag to wrap the map, default 'div' 'wrapperOptions' => [ // optional, attributes passed to \yii\helpers\Html::tag() method for constructing map wrapper 'class' => 'map-wrapper', 'style' => 'width:100%;height:400px;', ], // Javascript function name to handle clicks on placemarks. // Callback function can accept just one param - point ID string. 'jsPointsClickCallback' => 'myCallback', ]) ?>
Callback function handling clicks on placemarks example
<script> function myCallback(point_id) { console.log(point_id) } </script>
points.json example
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"id": "point-1",
"geometry": {
"type": "Point",
"coordinates": [
52.449837,
-1.930617
]
},
"properties": {
"hintContent": "some hint",
"balloonContent": "some text"
}
},
{
"type": "Feature",
"id": "point-2",
"geometry": {
"type": "Point",
"coordinates": [
52.449845,
-1.930029
]
},
"properties": {
"hintContent": "some other hint",
"balloonContent": "some other text"
}
}
]
}
points.json generate example in php
<?php $items = [ [ "type" => "Feature", "id" => 'point-1', "geometry" => [ "type" => "Point", "coordinates" => [52.449837, -1.930617], ], "properties" => [ "hintContent" => 'some hint', "balloonContent" => 'some text', ], ], [ "type" => "Feature", "id" => 'point-2', "geometry" => [ "type" => "Point", "coordinates" => [52.449845, -1.930029], ], "properties" => [ "hintContent" => 'some other hint', "balloonContent" => 'some other text', ], ], ]; $collection = [ "type" => "FeatureCollection", "features" => $items, ]; echo json_encode($collection);
andrewdanilov/yii2-yandexmap 适用场景与选型建议
andrewdanilov/yii2-yandexmap 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 495 次下载、GitHub Stars 达 1, 最近一次更新时间为 2019 年 04 月 14 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「map」 「extension」 「yandex」 「yii2」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 andrewdanilov/yii2-yandexmap 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 andrewdanilov/yii2-yandexmap 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 andrewdanilov/yii2-yandexmap 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Maps in minutes. Powered by the Google Maps API.
Yii2 map input widget. Allows you to select geographcal coordinates via a human-friendly inteface.
A custom URL rule class for Yii 2 which allows to create translated URL rules
The flysystem adapter for yandex disk rest api.
The Yii2 extension uses jQuery jquery.carousel-1.1.min.js and makes image carousel from php array of structure defined.
TYPO3 CMS extension to create gallery content element with preset crop ratios and pagination
统计信息
- 总下载量: 495
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 8
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-04-14