iOS导航SDK,网页版百度地图

1,iOS导航SDK使用cocoapods
现在应该是 pod 'BaiduMapNavSDK'
2,iOS导航SDK默认的导航方式为:驾驶导航,暂时没有发现骑行和步行导航。(所以,还是集成iOS地图,什么都有了。)

3,打开网页版百度、高德、系统地图。

参考一:IOS_URI跳转方式多种地图导航的代码实践
参考二:iOS如何调起地图进行导航(高德,百度,系统自带


4,坐标转换参考1

/** 
 
     1、地球坐标 :( 代号:GPS、WGS84 )--- 有W就是世界通用的
     也就是原始坐标体系,这是国际公认的世界标准坐标体系;
     
         注意:>1,使用 WGS84 坐标系统的产品有:  苹果的 CLLocationManager 获取的坐标
 
     2,百度坐标系统 (代号:BD-09)
 
     3,火星坐标: (代号:GCJ-02)--- G国家 C测绘 J局 02年测绘的
 
         注意:>1,使用 GCJ-02 火星坐标系统的产品有:
         高德地图、腾讯地图、阿里云地图、灵图51地图
 
     注意:现在苹果系统自带的地图使用的是高德地图,所以苹果自带的地图应用,用的是GCJ-02的坐标系统。
     !!!但是代码中CLLocationManager获取到的是WGS84坐标系的坐标
 
 
     //---------------------------------------------------------------
     地球坐标 ---> 火星坐标
 */
+ (CLLocationCoordinate2D)jq_transitionToHuoXingCoordinate:(CLLocationCoordinate2D)coordinate
{
    
    double longitude = coordinate.longitude;
    double latitude = coordinate.latitude;
    
    // 首先判断坐标是否属于天朝
    if (![self isInChinaWithlat:latitude lon:longitude]) {

        CLLocationCoordinate2D resultCoordinate;
        resultCoordinate.latitude = latitude;
        resultCoordinate.longitude = longitude;
        return resultCoordinate;
        
    }
    
    double a = 6378245.0;
    double ee = 0.00669342162296594323;
    
    double dLat = [self transform_earth_from_mars_lat_lat:(latitude - 35.0) lon:(longitude - 35.0)];
    double dLon = [self transform_earth_from_mars_lng_lat:(latitude - 35.0) lon:(longitude - 35.0)];
    double radLat = latitude / 180.0 * M_PI;
    double magic = sin(radLat);
    magic = 1 - ee * magic * magic;
    double sqrtMagic = sqrt(magic);
    dLat = (dLat * 180.0) / ((a * (1 - ee)) / (magic * sqrtMagic) * M_PI);
    dLon = (dLon * 180.0) / (a / sqrtMagic * cos(radLat) * M_PI);
    
    double newLatitude = latitude + dLat;
    double newLongitude = longitude + dLon;
    
    
    CLLocationCoordinate2D resultCoordinate;
    resultCoordinate.longitude = newLongitude;
    resultCoordinate.latitude = newLatitude;
    
    return resultCoordinate;
}

+ (BOOL)isInChinaWithlat:(double)lat lon:(double)lon {
    if (lon < 72.004 || lon > 137.8347)
        return NO;
    if (lat < 0.8293 || lat > 55.8271)
        return NO;
    return YES;
}
+ (double)transform_earth_from_mars_lat_lat:(double)y lon:(double)x {
    double ret = -100.0 + 2.0 * x + 3.0 * y + 0.2 * y * y + 0.1 * x * y + 0.2 * sqrt(fabs(x));
    ret += (20.0 * sin(6.0 * x * M_PI) + 20.0 * sin(2.0 * x * M_PI)) * 2.0 / 3.0;
    ret += (20.0 * sin(y * M_PI) + 40.0 * sin(y / 3.0 * M_PI)) * 2.0 / 3.0;
    ret += (160.0 * sin(y / 12.0 * M_PI) + 3320 * sin(y * M_PI / 30.0)) * 2.0 / 3.0;
    return ret;
}

+ (double)transform_earth_from_mars_lng_lat:(double)y lon:(double)x {
    double ret = 300.0 + x + 2.0 * y + 0.1 * x * x + 0.1 * x * y + 0.1 * sqrt(fabs(x));
    ret += (20.0 * sin(6.0 * x * M_PI) + 20.0 * sin(2.0 * x * M_PI)) * 2.0 / 3.0;
    ret += (20.0 * sin(x * M_PI) + 40.0 * sin(x / 3.0 * M_PI)) * 2.0 / 3.0;
    ret += (150.0 * sin(x / 12.0 * M_PI) + 300.0 * sin(x / 30.0 * M_PI)) * 2.0 / 3.0;
    return ret;
}


/** 
    百度坐标转高德坐标
 */
+ (CLLocationCoordinate2D)GCJ02FromBD09:(CLLocationCoordinate2D)coor
{
    CLLocationDegrees x_pi = 3.14159265358979324 * 3000.0 / 180.0;
    CLLocationDegrees x = coor.longitude - 0.0065, y = coor.latitude - 0.006;
    CLLocationDegrees z = sqrt(x * x + y * y) - 0.00002 * sin(y * x_pi);
    CLLocationDegrees theta = atan2(y, x) - 0.000003 * cos(x * x_pi);
    CLLocationDegrees gg_lon = z * cos(theta);
    CLLocationDegrees gg_lat = z * sin(theta);
    return CLLocationCoordinate2DMake(gg_lat, gg_lon);  //注意这里反着传经纬度
}

/** 
    高德坐标转百度坐标
 */
+ (CLLocationCoordinate2D)BD09FromGCJ02:(CLLocationCoordinate2D)coor
{
    CLLocationDegrees x_pi = 3.14159265358979324 * 3000.0 / 180.0;
    CLLocationDegrees x = coor.longitude, y = coor.latitude;
    CLLocationDegrees z = sqrt(x * x + y * y) + 0.00002 * sin(y * x_pi);
    CLLocationDegrees theta = atan2(y, x) + 0.000003 * cos(x * x_pi);
    CLLocationDegrees bd_lon = z * cos(theta) + 0.0065;
    CLLocationDegrees bd_lat = z * sin(theta) + 0.006;
    return CLLocationCoordinate2DMake(bd_lat, bd_lon);  //注意这里反着传经纬度
}

5,参数知识点介绍

/**
     
     {
     origin 起点名称或经纬度,或者可同时提供名称和经纬度,此时经纬度优先级高,将作为导航依据,名称只负责展示。   必选
     1、名称:天安门
     2、经纬度:39.98871<纬度>,116.43234<经度>。
     3、名称和经纬度:name:天安门|latlng:39.98871,116.43234(注意:“name:天安门|”是必须要写的!)
     }
     
     {
     region 城市名或县名  必选
     (当给定region时,认为起点和终点都在同一城市,除非单独给定起点或终点的城市。)
     }
     name   线路名称    必选
     zoom   展现地图的级别,默认为视觉最优级别。  可选
     src    调用来源,规则:webapp.line.yourCompanyName.yourAppName 必选
     location   lat<纬度>,lng<经度> 必选
     title      标注点显示标题     必选
     product下可直接跟方法,当然产品线也可增加一个service级别
     content    标注点显示内容     必选
     mode导航模式,固定为transit、driving、navigation、walking,riding分别表示公交、驾车、导航、步行和骑行
     
     {
     coord_type 坐标类型,可选参数,默认为bd09ll。    可选
     允许的值为bd09ll、bd09mc、gcj02、wgs84。
     bd09ll表示百度经纬度坐标,
     bd09mc表示百度墨卡托坐标,
     gcj02表示经过国测局加密的坐标,
     wgs84表示gps获取的坐标。
     }
     
     举例:
     baidumap://map/direction?origin=中关村&destination=五道口&mode=driving&region=北京
     //本示例是通过该URL启动地图app并进入北京市从中关村到五道口的驾车导航路线图
     
     
     */
#工具类方法:

//
//  XWMapTool.m
//  LeSong
//
//  Created by 李学文 on 2017/6/12.
//  Copyright © 2017年 李学文. All rights reserved.
//

#import "XWMapTool.h"
#import <MapKit/MapKit.h>
#import "LSGetCurrentLocation.h"

@implementation XWMapTool

//防止获取当前经纬度时多次回调。
static NSString *isFirst;

+(void)jq_navigationToLocation:(CLLocationCoordinate2D)endCoordinate2D
{
    //http://blog.csdn.net/a416863220/article/details/51220739
    
    isFirst = @"1";
    
    //获取自己的当前位置
    [[LSGetCurrentLocation shareManager] beginLocate];
    
    [LSGetCurrentLocation shareManager].locationBlock = ^(double longitude, double latitude) {
        
        if (longitude>=0&&latitude>=0) {
            
            [[LSGetCurrentLocation shareManager] stopLocation];//结束定位
            
            if ([isFirst integerValue]) {
                
                isFirst = @"0";
                
                CLLocationCoordinate2D startCoordinate2D;
                startCoordinate2D.latitude = latitude;
                startCoordinate2D.longitude = longitude;
                
                //把开始和结束的位置传过去,返回可以打开的APP以及对应的URL
                NSArray * arry = [self jq_startNavgationStartLocation:startCoordinate2D endLocation:endCoordinate2D];
                
                
                //初始化提示框;
                UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"选择导航地图" message:nil preferredStyle:UIAlertControllerStyleActionSheet];
                for (int i=0; i<arry.count; i++) {
                    
                    
                    NSDictionary *dic = [arry objectAtIndex:i];
                    
                    NSString *title = [dic objectForKey:@"title"];
                    
                [alert addAction:[UIAlertAction actionWithTitle:title style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
                    
                        NSString *urlString = dic[@"url"];
                        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:urlString]];
                        
                    }]];
                    
                }
                
                [alert addAction:[UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
                    
                    
                    
                }]];
                
                //弹出提示框;
                [self.jq_currentVC presentViewController:alert animated:true completion:nil];
            }
            
        }
        
    };
    
    
}

+(NSMutableArray *)jq_startNavgationStartLocation:(CLLocationCoordinate2D)startCoordinate2D endLocation:(CLLocationCoordinate2D)endCoordinate2D
{
    
    /**
     
     {
     origin 起点名称或经纬度,或者可同时提供名称和经纬度,此时经纬度优先级高,将作为导航依据,名称只负责展示。 必选
     1、名称:天安门
     2、经纬度:39.98871<纬度>,116.43234<经度>。
     3、名称和经纬度:name:天安门|latlng:39.98871,116.43234(注意:“name:天安门|”是必须要写的!)
     }
     
     {
     region 城市名或县名  必选
     (当给定region时,认为起点和终点都在同一城市,除非单独给定起点或终点的城市。)
     }
     name 线路名称 必选
     zoom 展现地图的级别,默认为视觉最优级别。 可选
     src 调用来源,规则:webapp.line.yourCompanyName.yourAppName 必选
     location lat<纬度>,lng<经度> 必选
     title      标注点显示标题     必选
     product下可直接跟方法,当然产品线也可增加一个service级别
     content 标注点显示内容     必选
     mode导航模式,固定为transit、driving、navigation、walking,riding分别表示公交、驾车、导航、步行和骑行
     
     {
     coord_type 坐标类型,可选参数,默认为bd09ll。 可选
     允许的值为bd09ll、bd09mc、gcj02、wgs84。
     bd09ll表示百度经纬度坐标,
     bd09mc表示百度墨卡托坐标,
     gcj02表示经过国测局加密的坐标,
     wgs84表示gps获取的坐标。
     }
     
     举例:
     baidumap://map/direction?origin=中关村&destination=五道口&mode=driving&region=北京
     //本示例是通过该URL启动地图app并进入北京市从中关村到五道口的驾车导航路线图
     
     
     */
    
    
    NSMutableArray *maps = [NSMutableArray array];
    
    //百度地图
    if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"baidumap://"]]) {
        NSMutableDictionary *baiduMapDic = [NSMutableDictionary dictionary];
        baiduMapDic[@"title"] = @"百度地图";
        
        
        CLLocationCoordinate2D baiduStartCoordinate = startCoordinate2D;
        CLLocationCoordinate2D baiduEndCoordinate = endCoordinate2D;
        
        //地球坐标转火星坐标
        baiduStartCoordinate = [self jq_transitionToHuoXingCoordinate:baiduStartCoordinate];
        
        //高德坐标转百度坐标
        baiduStartCoordinate = [self BD09FromGCJ02:baiduStartCoordinate];
        baiduEndCoordinate = [self BD09FromGCJ02:baiduEndCoordinate];
        
        /** 
            注意:“name:当前位置|”必须要在latlng之前写上!!!
         
                >1,起始位置:origin=name:当前位置|latlng:%f,%f
                >2,终点位置:destination=name:终点位置|latlng:%lf,%lf
         */
        NSString *urlString = [[NSString stringWithFormat:@"baidumap://map/direction?origin=name:当前位置|latlng:%f,%f&destination=name:终点位置|latlng:%lf,%lf&mode=riding&coord_type=gcj02",baiduStartCoordinate.latitude,baiduStartCoordinate.longitude,baiduEndCoordinate.latitude,baiduEndCoordinate.longitude] stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
        baiduMapDic[@"url"] = urlString;
        [maps addObject:baiduMapDic];
    }
    
    
    //高德地图
    if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"iosamap://"]]) {
        NSMutableDictionary *gaodeMapDic = [NSMutableDictionary dictionary];
        gaodeMapDic[@"title"] = @"高德地图";
    
        /** 
            sourceApplication : APP名称
            backScheme  :   URL Scheme(用于从高德返回到APP,唯一标识)
            lat:纬度
            lon:经度
            dev和style固定传就可以了
         */
        NSString *urlString = [[NSString stringWithFormat:@"iosamap://navi?sourceApplication=%@&backScheme=%@&lat=%.1f&lon=%.1f&dev=0&style=2",@"乐送APP",@"GaoDeMap1001",endCoordinate2D.latitude,endCoordinate2D.longitude] stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
        gaodeMapDic[@"url"] = urlString;
        [maps addObject:gaodeMapDic];
    }
    
//    //谷歌地图
//    if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"comgooglemaps://"]]) {
//        NSMutableDictionary *googleMapDic = [NSMutableDictionary dictionary];
//        googleMapDic[@"title"] = @"谷歌地图";
//        NSString *urlString = [[NSString stringWithFormat:@"comgooglemaps://?x-source=%@&x-success=%@&saddr=&daddr=%f,%f&directionsmode=driving",@"导航测试",@"nav123456",endCoordinate2D.latitude, endCoordinate2D.longitude] stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
//        googleMapDic[@"url"] = urlString;
//        [maps addObject:googleMapDic];
//    }
//    
//    //腾讯地图
//    if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"qqmap://"]]) {
//        NSMutableDictionary *qqMapDic = [NSMutableDictionary dictionary];
//        qqMapDic[@"title"] = @"腾讯地图";
//        NSString *urlString = [[NSString stringWithFormat:@"qqmap://map/routeplan?from=我的位置&type=drive&tocoord=%f,%f&to=终点&coord_type=1&policy=0",endCoordinate2D.latitude, endCoordinate2D.longitude] stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
//        qqMapDic[@"url"] = urlString;
//        [maps addObject:qqMapDic];
//    }

    
    return maps;
}

/** 
 
     1、地球坐标 :( 代号:GPS、WGS84 )--- 有W就是世界通用的
     也就是原始坐标体系,这是国际公认的世界标准坐标体系;
     
         注意:>1,使用 WGS84 坐标系统的产品有:  苹果的 CLLocationManager 获取的坐标
 
     2,百度坐标系统 (代号:BD-09)
 
     3,火星坐标: (代号:GCJ-02)--- G国家 C测绘 J局 02年测绘的
 
         注意:>1,使用 GCJ-02 火星坐标系统的产品有:
         高德地图、腾讯地图、阿里云地图、灵图51地图
 
     注意:现在苹果系统自带的地图使用的是高德地图,所以苹果自带的地图应用,用的是GCJ-02的坐标系统。
     !!!但是代码中CLLocationManager获取到的是WGS84坐标系的坐标
 
 
     //---------------------------------------------------------------
     地球坐标 ---> 火星坐标
 */
+ (CLLocationCoordinate2D)jq_transitionToHuoXingCoordinate:(CLLocationCoordinate2D)coordinate
{
    
    double longitude = coordinate.longitude;
    double latitude = coordinate.latitude;
    
    // 首先判断坐标是否属于天朝
    if (![self isInChinaWithlat:latitude lon:longitude]) {

        CLLocationCoordinate2D resultCoordinate;
        resultCoordinate.latitude = latitude;
        resultCoordinate.longitude = longitude;
        return resultCoordinate;
        
    }
    
    double a = 6378245.0;
    double ee = 0.00669342162296594323;
    
    double dLat = [self transform_earth_from_mars_lat_lat:(latitude - 35.0) lon:(longitude - 35.0)];
    double dLon = [self transform_earth_from_mars_lng_lat:(latitude - 35.0) lon:(longitude - 35.0)];
    double radLat = latitude / 180.0 * M_PI;
    double magic = sin(radLat);
    magic = 1 - ee * magic * magic;
    double sqrtMagic = sqrt(magic);
    dLat = (dLat * 180.0) / ((a * (1 - ee)) / (magic * sqrtMagic) * M_PI);
    dLon = (dLon * 180.0) / (a / sqrtMagic * cos(radLat) * M_PI);
    
    double newLatitude = latitude + dLat;
    double newLongitude = longitude + dLon;
    
    
    CLLocationCoordinate2D resultCoordinate;
    resultCoordinate.longitude = newLongitude;
    resultCoordinate.latitude = newLatitude;
    
    return resultCoordinate;
}

+ (BOOL)isInChinaWithlat:(double)lat lon:(double)lon {
    if (lon < 72.004 || lon > 137.8347)
        return NO;
    if (lat < 0.8293 || lat > 55.8271)
        return NO;
    return YES;
}
+ (double)transform_earth_from_mars_lat_lat:(double)y lon:(double)x {
    double ret = -100.0 + 2.0 * x + 3.0 * y + 0.2 * y * y + 0.1 * x * y + 0.2 * sqrt(fabs(x));
    ret += (20.0 * sin(6.0 * x * M_PI) + 20.0 * sin(2.0 * x * M_PI)) * 2.0 / 3.0;
    ret += (20.0 * sin(y * M_PI) + 40.0 * sin(y / 3.0 * M_PI)) * 2.0 / 3.0;
    ret += (160.0 * sin(y / 12.0 * M_PI) + 3320 * sin(y * M_PI / 30.0)) * 2.0 / 3.0;
    return ret;
}

+ (double)transform_earth_from_mars_lng_lat:(double)y lon:(double)x {
    double ret = 300.0 + x + 2.0 * y + 0.1 * x * x + 0.1 * x * y + 0.1 * sqrt(fabs(x));
    ret += (20.0 * sin(6.0 * x * M_PI) + 20.0 * sin(2.0 * x * M_PI)) * 2.0 / 3.0;
    ret += (20.0 * sin(x * M_PI) + 40.0 * sin(x / 3.0 * M_PI)) * 2.0 / 3.0;
    ret += (150.0 * sin(x / 12.0 * M_PI) + 300.0 * sin(x / 30.0 * M_PI)) * 2.0 / 3.0;
    return ret;
}

/** 
    百度坐标转高德坐标
 */
+ (CLLocationCoordinate2D)GCJ02FromBD09:(CLLocationCoordinate2D)coor
{
    CLLocationDegrees x_pi = 3.14159265358979324 * 3000.0 / 180.0;
    CLLocationDegrees x = coor.longitude - 0.0065, y = coor.latitude - 0.006;
    CLLocationDegrees z = sqrt(x * x + y * y) - 0.00002 * sin(y * x_pi);
    CLLocationDegrees theta = atan2(y, x) - 0.000003 * cos(x * x_pi);
    CLLocationDegrees gg_lon = z * cos(theta);
    CLLocationDegrees gg_lat = z * sin(theta);
    return CLLocationCoordinate2DMake(gg_lat, gg_lon);  //注意这里反着传经纬度
}

/** 
    高德坐标转百度坐标
 */
+ (CLLocationCoordinate2D)BD09FromGCJ02:(CLLocationCoordinate2D)coor
{
    CLLocationDegrees x_pi = 3.14159265358979324 * 3000.0 / 180.0;
    CLLocationDegrees x = coor.longitude, y = coor.latitude;
    CLLocationDegrees z = sqrt(x * x + y * y) + 0.00002 * sin(y * x_pi);
    CLLocationDegrees theta = atan2(y, x) + 0.000003 * cos(x * x_pi);
    CLLocationDegrees bd_lon = z * cos(theta) + 0.0065;
    CLLocationDegrees bd_lat = z * sin(theta) + 0.006;
    return CLLocationCoordinate2DMake(bd_lat, bd_lon);  //注意这里反着传经纬度
}

@end
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 194,390评论 5 459
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 81,821评论 2 371
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 141,632评论 0 319
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 52,170评论 1 263
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 61,033评论 4 355
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 46,098评论 1 272
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 36,511评论 3 381
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 35,204评论 0 253
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 39,479评论 1 290
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 34,572评论 2 309
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 36,341评论 1 326
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 32,213评论 3 312
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 37,576评论 3 298
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 28,893评论 0 17
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 30,171评论 1 250
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 41,486评论 2 341
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 40,676评论 2 335

推荐阅读更多精彩内容