关注每一位员工的成长
从新人培训,升课程,完善的培养体系,丰富的内部分享让你时刻保持学习,挖掘自己的无限潜能
福利关怀
从专属食堂、员工宿舍、健康体检、到灵活办公、各类补贴等、为你提供全面的福利保障。
function loadMapScenario() {
var map = new Microsoft.Maps.Map(document.getElementById('myMap'), {});
map.setView({
mapTypeId: Microsoft.Maps.MapTypeId.aerial,
center: new Microsoft.Maps.Location(27.854905, 120.82024),
zoom: 15
});
var center = map.getCenter();
var infobox = new Microsoft.Maps.Infobox(
center,
{ title: '浙江利来w66最老牌科技股份有限公司', description: '
地址:温州经济技术开发区滨海园区滨海8路558号
' }
);
var pushpin = new Microsoft.Maps.Pushpin(new Microsoft.Maps.Location(27.854905, 120.82024), { title: '' });
var polyline = new Microsoft.Maps.Polyline([
new Microsoft.Maps.Location(27.854905, 120.82024)], { strokeColor: 'red', strokeThickness: 5 });
var layer = new Microsoft.Maps.Layer();
layer.add([pushpin, polyline]);
map.layers.insert(layer);
infobox.setMap(map);
infobox.setOptions({ showPointer: true, showCloseButton: true });
}