durich/fontawesome-markers
Composer 安装命令:
composer require durich/fontawesome-markers
包简介
Iconic markers for Map, based on the Font-Awesome icons
README 文档
README
An export of the fontawesome glyphs into named SVG Paths in javascript.
All glyphs have the same names as font-awesome, except they are capitalised, and underscored, eg "exclamation-circle" becomes "EXCLAMATION_CIRCLE"
Usage
Install on bower with bower install fontawesome-markers
Or, install with NPM with npm install fontawesome-markers
Or, just add fontawesome-markers.min.js to your page and reference it like the examples below.
If you're a masochist, you can try extracting other webfonts (or newer versions of Font Awesome) using the scripts in extractor/
Example - Font Awesome on Google Maps
You can use these paths, in products like Google Maps, for example:
new google.maps.Marker({ map: map, icon: { path: fontawesome.markers.EXCLAMATION_CIRCLE, scale: 0.5, strokeWeight: 0.2, strokeColor: 'black', strokeOpacity: 1, fillColor: '#f8ae5f', fillOpacity: 0.7, }, clickable: false, position: new google.maps.LatLng(lat, lng) });
Example - Font Awesome on Canvas
You can also draw them to canvas, using the new Path2D api, you may need to use a polyfill for unsupported browsers
var canvas = document.getElementsByTagName('canvas')[0]; var ctx = canvas.getContext("2d"); var path = new Path2D(fontawesome.markers.EXCLAMATION_CIRCLE); ctx.strokeStyle="#ff0000"; ctx.lineWidth=2; ctx.fillStyle="#0000ff"; ctx.translate(0, 64); ctx.fill(path); ctx.stroke(path);
Example - Loading Font Awesome Markers via JSON/ XHR
Instead of including it as an inline script, you can also load it with JSON/XHR.
var fontawesome = { markers: null }; var xhr = new XMLHttpRequest(); xhr.onload = function(){ fontawesome.markers = JSON.parse(this.responseText); } xhr.open("get", "fontawesome-markers.json", true); xhr.send();
Update
- 18th April 2016 - Made it super easy to build for new versions of fontawesome. Released on Bower & NPM.
- 16th October 2014 - Updated to fontawesome 4.2.0
- 7th August 2014 - Updated to fontawesome 4.1.0, see the Fontawesome Upgrade Guide for the list of changed names.
- 26th September 2013 - Changed font extraction process - Glyph size is a much more manageable 64px now, and rotation / flip corrected.
durich/fontawesome-markers 适用场景与选型建议
durich/fontawesome-markers 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 78 次下载、GitHub Stars 达 0, 最近一次更新时间为 2017 年 08 月 21 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「bootstrap」 「maps」 「font」 「awesome」 「markers」 「FontAwesome」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 durich/fontawesome-markers 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 durich/fontawesome-markers 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 durich/fontawesome-markers 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A Laravel Nova Google Maps Field.
FontAwesome5 for Magento2
PHP SVG font parser
An asset bundle for Font Awesome icons with Bootstrap 4.
Google Maps PHP SDK.
Views for the package MedicOneSystems Livewire Datatables with Bootstrap 4
统计信息
- 总下载量: 78
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 12
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2017-08-21