douchao1879 2014-05-07 06:03
浏览 46
已采纳

如何在PHP中用KML创建KMZ?

My KML Size is getting larger and takes a lot of time to download. I read that KMZ is very much compressed version and has less file Size. I already have KML string ready. How to create a kmz file from KML string?

  • 写回答

1条回答 默认 最新

  • dongping9475 2014-05-07 06:07
    关注

    Here is a php code to create KMZ file from KML on the fly. My KML of 6.0 Mb was reduced to 600Kb. You can also find the answer in here http://shprabin.wordpress.com/2013/06/24/creating-kmz-file-on-the-fly-php/

    <?php
    
    header('Content-Type: application/vnd.google-earth.kmz');
    header('Content-Disposition: attachment; filename="test.kmz"');
    
    $kmlString="This is your KML string";
    
    $file = "test.kmz";
    $zip = new ZipArchive();
    
    if ($zip->open($file, ZIPARCHIVE::CREATE)!==TRUE) {
    exit("cannot open <$file>
    ");
    }
    $zip->addFromString("doc.kml", $kmlString);
    $zip->close();
    echo file_get_contents($file);
    
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 DIFY API Endpoint 问题。
  • ¥20 sub地址DHCP问题
  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突