12 2014 档案
摘要:今天在我的windows7旗舰版上配置iis7 (Internet Information Server)失败,一直未能启动服务,访问本地网络提示”Service Unavailable HTTP Error 503. The service is unavailable“。DefaultAppPo
阅读全文
摘要:展开 折叠 using Baidu.Push.Api;
using Baidu.Push.Api.Domain;
using Baidu.Push.Api.Parser;
using Baidu.Push.Api.Request;
using Baidu.Push.Api.Util;
using System;
using System.Collections.Generic;
using S...
阅读全文
摘要:辅助类 GaoDeCoord.cs GaoDeCoord.cs using System;
using System.Collections.Generic;
using System.Configuration;
using System.Linq;
using System.Text; namespace RB.Common
{ #region 高德地图求范围自有数据 ...
阅读全文
摘要:foreach是取只读的,在取的时候数据不能变(包括修改,删除,添加等)。要避免这个问题,就应该使用for循环。 之前没有考虑过对collection类型对象操作时for 和foreach的区别,总感觉foreach更方便一些。今天写了个FOREARCH循环来操作删除某个 collection的元素
阅读全文
摘要:创建地图实例 var map = new BMap.Map("container"); // 创建地图实例 位于 BMap 命名空间下的 Map 类表示地图,通过 new 操作符可以创建一个地图实例。其参数可以是元素id 也可以是元素对象。注意在调用此构造函数时应确保容器元素已经添加到地图上。 创建点坐标 var point = new BMap.Poi...
阅读全文