Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,037

HOME > PHP > PHP Forum > รัน jquery google api ไม่ขึ้นค่ะ รบกวนช่วยดูให้หน่อยค่ะ



 

รัน jquery google api ไม่ขึ้นค่ะ รบกวนช่วยดูให้หน่อยค่ะ

 



Topic : 111887



โพสกระทู้ ( 78 )
บทความ ( 0 )



สถานะออฟไลน์




รัน google api ไม่ขึ้นเลย ค่ะ
รบกวนผู้รู้ดูให้หน่อยค่ะว่าผิดตรงไหน

Code
<!DOCTYPE html> <html> <head> <script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=key_api"> </script> <script type="text/javascript"> var map; var marker; var latitudeTextBox = $("#LatitudeTextBox"); var longitudeTextBox = $("#LongitudeTextBox"); jQuery(document).ready(function () { var centerLatlng = new google.maps.LatLng(33.976222, -118.281698); var mapOptions = { zoom: 10, center: centerLatlng, scrollwheel: false, mapTypeId: google.maps.MapTypeId.ROADMAP, mapTypeControl: true, mapTypeControlOptions: { style: google.maps.MapTypeControlStyle.DEFAULT }, navigationControl: true, navigationControlOptions: { style: google.maps.NavigationControlStyle.DEFAULT } }; map = new google.maps.Map(document.getElementById("map_canvas"), mapOptions); // Edit existing location so that we need to display // Display default marker marker = new google.maps.Marker({ draggable: true, map: map, position: centerLatlng }); // After dragging, updates both Lat and Lng. google.maps.event.addListener(marker, 'dragend', function () { var curLatLng = marker.getPosition(); latitudeTextBox.val(curLatLng.lat()); longitudeTextBox.val(curLatLng.lng()); }); google.maps.event.trigger(marker, "click"); }); </script> </head> <body> <div id="map-canvas"></div> </body> </html>




Tag : PHP, MySQL, JavaScript, jQuery, Web (ASP.NET)







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2014-10-12 21:46:40 By : K927 View : 1004 Reply : 4
 

 

No. 1



โพสกระทู้ ( 1,521 )
บทความ ( 2 )

สมาชิกที่ใส่เสื้อไทยครีเอท Hall of Fame 2012

สถานะออฟไลน์
Facebook

src="https://maps.googleapis.com/maps/api/js?key=key_api"

ต้องมี key ก่อนนะ เข้าไปดูที่นี่นะ Google Maps API Key






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-10-12 22:23:18 By : Krungsri
 


 

No. 2



โพสกระทู้ ( 78 )
บทความ ( 0 )



สถานะออฟไลน์


ใส่แล้วค่ะ

Code
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCzBoldXbFohC86Uww8EhvKc-MguuHIk4o"> </script>

แต่ก้ยังไม่ขึ้นอ่ะ


ประวัติการแก้ไข
2014-10-12 22:26:51
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-10-12 22:23:51 By : K927
 

 

No. 3



โพสกระทู้ ( 1,521 )
บทความ ( 2 )

สมาชิกที่ใส่เสื้อไทยครีเอท Hall of Fame 2012

สถานะออฟไลน์
Facebook

Code (PHP)
<!DOCTYPE html>
<html>
<head>
<script src="http://maps.googleapis.com/maps/api/js?key=AIzaSyDY0kkJiTPVd2U7aTOAwhc9ySH6oHxOIYM&sensor=false">
</script>

<script>
function initialize()
{
    var latitudeTextBox = document.getElementById("latitude");
    var longitudeTextBox = document.getElementById("longitude");

    var mapOption = {
        zoom: 10,
        center: new google.maps.LatLng(latitudeTextBox.value,longitudeTextBox.value),
        scrollwheel: false,
        mapTypeId: google.maps.MapTypeId.ROADMAP,
        mapTypeControl: true,
        mapTypeControlOptions: {
            style: google.maps.MapTypeControlStyle.DEFAULT
        },
        navigationControl: true,
        navigationControlOptions: {
            style: google.maps.NavigationControlStyle.DEFAULT
        }
    };
    var map = new google.maps.Map(document.getElementById("googleMap"),mapOption);

    marker = new google.maps.Marker({
        draggable: true,
        map: map,
        position: new google.maps.LatLng(latitudeTextBox.value,longitudeTextBox.value),
    });

    google.maps.event.addListener(marker, 'dragend', function () {
        var curLatLng = marker.getPosition();
        latitudeTextBox.value = curLatLng.lat();
        longitudeTextBox.value = curLatLng.lng();
    });
}

google.maps.event.addDomListener(window, 'load', initialize);
</script>
</head>

<body>
<div id="googleMap" style="width:500px;height:380px;"></div>
<label for="latitude">Lat: <input type="text" id="latitude" value="16.420306952381196"></label>
<label for="longitude">Lang: <input type="text" id="longitude" value="101.15419700000007"></label>
</body>
</html>

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-10-12 22:57:38 By : Krungsri
 


 

No. 4



โพสกระทู้ ( 78 )
บทความ ( 0 )



สถานะออฟไลน์


ได้แล้วค่ะ

ขอบคุณกั๊บปม
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-10-12 23:06:00 By : K927
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : รัน jquery google api ไม่ขึ้นค่ะ รบกวนช่วยดูให้หน่อยค่ะ
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 04
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่