Show shape file (.shp)(map) on map with shape file Include gasparesganga package in php code https://gasparesganga.com/labs/php-shapefile/ <?php // Register autoloader require_once('vendor/gasparesganga/php-shapefile/src/Shapefile/ShapefileAutoloader.php'); Shapefile\ShapefileAutoloader::register(); // Import classes use Shapefile\Shapefile; use Shapefile\ShapefileException; use Shapefile\ShapefileReader; try { // Open Shapefile $Shapefile = new ShapefileReader('filepath/shapefile.shp'); // $json_data = $Shapefile->fetchRecord()->getGeoJSON(); $geoJsonArray = []; while ($Geometry = $Shapefile->fetchRecord()) { // Skip the record if marked as "deleted" if ($Geometry->isDeleted()) { continue; } ...
We provide knowledgeable blogs related to php, jQuery, html, css, wordpress, woocommerce, cordova app with examples in 2021.