第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

當(dāng)標(biāo)記之一為空經(jīng)度和緯度時(shí),傳單地圖不顯示所有標(biāo)記

當(dāng)標(biāo)記之一為空經(jīng)度和緯度時(shí),傳單地圖不顯示所有標(biāo)記

PHP
慕碼人8056858 2023-03-04 16:46:46
我最近從我的學(xué)校得到一個(gè)任務(wù),我使用傳單制作了一張簡(jiǎn)單的地圖,但是我有一個(gè)問(wèn)題,我的地圖上的標(biāo)記沒(méi)有顯示,當(dāng)其中一個(gè)標(biāo)記在數(shù)據(jù)庫(kù)中的經(jīng)度和緯度上為空時(shí),我想要我地圖上的另一個(gè)標(biāo)記仍然有效,即使其中一個(gè)標(biāo)記的經(jīng)度和緯度都為空 :) 這是我的一些代碼:            while($row = mysqli_fetch_assoc($data)) {            if($row['latitude'] == 0 ){                // what should i do here, ????                // var_dump('place_name');            }else{            // add marker to map            $marker .= 'var marker = L.circle(['.$row['latitude'].', '.$row['longitude'].'],            {                color: "red",                fillColor: "#f03",                fillOpacity: 0.5,                radius: 2000            }            ).addTo(map).bindPopup("'.$row['place_name'].'").openPopup().on("mouseover", function (e) {                this.openPopup();            }).on("mouseout", function (e) {                this.closePopup();            });            ;            ';        }    }有人能給我一些解決這個(gè)問(wèn)題的建議嗎?感謝閱讀本文:)
查看完整描述

1 回答

?
楊__羊羊

TA貢獻(xiàn)1943條經(jīng)驗(yàn) 獲得超7個(gè)贊

你可以嘗試這樣的事情來(lái)跳過(guò)空緯度和經(jīng)度:


while ($row = mysqli_fetch_assoc($data)) {

    $latitude = (float)$row['latitude'];

    $longitude = (float)$row['longitude'];


    if ($latitude === 0 && $longitude === 0) {

        continue;

        // what should i do here, ????

        // var_dump('place_name');

    }


    // add marker to map

    $marker .= sprintf('var marker = L.circle([ %s, %s],

            {

                color: "red",

                fillColor: "#f03",

                fillOpacity: 0.5,

                radius: 2000

            }

            ).addTo(map).bindPopup("%s").openPopup().on("mouseover", function (e) {

                this.openPopup();

            }).on("mouseout", function (e) {

                this.closePopup();

            });

            ;

            ', $latitude, $longitude, $row['place_name']);

}

:)


查看完整回答
反對(duì) 回復(fù) 2023-03-04
  • 1 回答
  • 0 關(guān)注
  • 144 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)