タイトル: PHP を使用して Websocket を開発し、リアルタイム地図位置測位機能を実装する
はじめに:
Websocket は、永続的な接続とリアルタイムを実装するプロトコルです。双方向通信により、リアルタイムのデータ転送と更新を実現できます。この記事では、PHP を使用して Websocket を開発し、地図測位機能と組み合わせて、リアルタイムの地図測位機能を実現します。具体的なコード実装プロセスについては、以下で詳しく紹介します。
1. 準備
2. 関連ライブラリのインストール
コマンド ラインを開き、プロジェクトが存在するディレクトリを入力し、次のコマンドを実行して Ratchet ライブラリをインストールします。 #
composer require cboden/ratchet
<?php require 'vendor/autoload.php'; use RatchetMessageComponentInterface; use RatchetConnectionInterface; use RatchetServerIoServer; use RatchetHttpHttpServer; use RatchetWebSocketWsServer; class MapLocation implements MessageComponentInterface { protected $clients; public function __construct() { $this->clients = new SplObjectStorage; } public function onOpen(ConnectionInterface $conn) { $this->clients->attach($conn); echo "New connection! ({$conn->resourceId}) "; } public function onClose(ConnectionInterface $conn) { $this->clients->detach($conn); echo "Connection closed! ({$conn->resourceId}) "; } public function onMessage(ConnectionInterface $from, $msg) { foreach ($this->clients as $client) { $client->send($msg); } } public function onError(ConnectionInterface $conn, Exception $e) { echo "An error occurred: {$e->getMessage()} "; $conn->close(); } } $server = IoServer::factory( new HttpServer( new WsServer( new MapLocation() ) ), 8080 ); $server->run();
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>实时地图定位</title> <style> #map { width: 800px; height: 600px; border: 1px solid #ccc; } </style> <script src="https://cdn.leafletjs.com/leaflet/v1.3.1/leaflet.js"></script> <link rel="stylesheet" href="https://cdn.leafletjs.com/leaflet/v1.3.1/leaflet.css" /> </head> <body> <div id="map"></div> <script> var map = L.map('map').setView([39.9075, 116.39723], 13); L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', { maxZoom: 18, attribution: 'Map data © OpenStreetMap contributors' }).addTo(map); var ws = new WebSocket("ws://localhost:8080"); ws.onmessage = function (event) { var data = JSON.parse(event.data); var marker; if (data.action === 'add') { marker = L.marker([data.lat, data.lng]).addTo(map); } else if (data.action === 'update') { marker = markers[data.id]; if (marker) { marker.setLatLng([data.lat, data.lng]); } } else if (data.action === 'remove') { marker = markers[data.id]; if (marker) { map.removeLayer(marker); } } if (marker) { markers[data.id] = marker; } }; var markers = {}; </script> </body> </html>
php server.php次のコマンドを実行します。ブラウザにアクセスすると、マップ インターフェイスが表示されます。
以上がphpを使用してWebsocketを開発し、リアルタイム地図位置測位機能を実装しますの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。