與學校老師相關的英文稱呼
project advisor 專題指導老師 class tutor 班導 (XXX Course) Instructor (XXX課) 授課老師 mentor 導師 (不確定具體使用的時機) 參考: [問題] "Relationship to you" 要怎麼填 - 看板 studyabroad - 批踢踢實業坊
![]() |
| 測試用的自訂地圖 |
<!DOCTYPE html>
<div id="map"></div>
<!-- Replace the value of the key parameter with your own API key. -->
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=*yourKey*&callback=initMap">
</script>
<style type="text/css">
/* Always set the map height explicitly to define the size of the div
* element that contains the map. */
#map {
height: 100%;
}
/* Optional: Makes the sample page fill the window. */
html, body {
height: 100%;
margin: 0;
padding: 0;
}
</style>
<script>
// This example creates circles on the map
// First, create an object containing LatLng.
var citymap = {
test: {
center: {lat: 25.0459, lng: 121.5452},
population: 8405837
},
};
function initMap() {
// Create the map.
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 13,
center: {lat: 25.0459, lng: 121.5452},
mapTypeId: 'terrain'
});
// Construct the circle for each value in citymap.
for (var city in citymap) {
// Add the circle for this city to the map.
var cityCircle = new google.maps.Circle({
strokeColor: '#FF0000',
strokeOpacity: 0.8,
strokeWeight: 2,
fillColor: '#FF0000',
fillOpacity: 0.35,
map: map,
center: citymap[city].center,
radius: 6000, // meter
draggable: true
});
}
}
</script>
留言
張貼留言