添加绘制线

1.RCTBaiduMapViewManager.m文件下添加RCT_EXPORT_VIEW_PROPERTY(polylines, NSArray*)绘制线的数组,禁用drawLineTexture方法,修改绘制线代理方法

  • (BMKOverlayView *)mapView:(BMKMapView *)mapView viewForOverlay:(id <BMKOverlay>)overlay{},将需要绘制的纹理图片添加到纹理图片数组中,图片的宽和高必须是2的整数幂,箭头向下

代码如下

//
//  RCTBaiduMapViewManager.m
//  RCTBaiduMap
//
//  Created by lovebing on Aug 6, 2016.
//  Copyright  2016 lovebing.org. All rights reserved.
//

#import "RCTBaiduMapViewManager.h"

@implementation RCTBaiduMapViewManager;

RCT_EXPORT_MODULE(RCTBaiduMapView)

RCT_EXPORT_VIEW_PROPERTY(mapType, int)
RCT_EXPORT_VIEW_PROPERTY(zoom, float)
RCT_EXPORT_VIEW_PROPERTY(trafficEnabled, BOOL)
RCT_EXPORT_VIEW_PROPERTY(baiduHeatMapEnabled, BOOL)
RCT_EXPORT_VIEW_PROPERTY(marker, NSDictionary*)
RCT_EXPORT_VIEW_PROPERTY(markers, NSArray*)
RCT_EXPORT_VIEW_PROPERTY(polylines, NSArray*)
RCT_EXPORT_VIEW_PROPERTY(overlayOptions, NSArray*)

RCT_EXPORT_VIEW_PROPERTY(onChange, RCTBubblingEventBlock)

RCT_CUSTOM_VIEW_PROPERTY(center, CLLocationCoordinate2D, RCTBaiduMapView) {
    [view setCenterCoordinate:json ? [RCTConvert CLLocationCoordinate2D:json] : defaultView.centerCoordinate];
}

CGFloat longitude;
CGFloat latitude;
NSString * titleStr = @"";
NSString * subtitle= @"";
BMKMapView* mapViewA;


+(void)initSDK:(NSString*)key {
    
    BMKMapManager* _mapManager = [[BMKMapManager alloc]init];
    BOOL ret = [_mapManager start:key  generalDelegate:nil];
    if (!ret) {
        NSLog(@"manager start failed!");
    }
}

- (UIView *)view {
    RCTBaiduMapView* mapView = [[RCTBaiduMapView alloc] init];
    mapView.delegate = self;
//    mapView.zoomEnabled=NO;
    mapView.zoomEnabledWithTap=NO;
    mapView.overlookEnabled= NO; //禁止俯视手势
    return mapView;
}

-(void)mapview:(BMKMapView *)mapView
 onDoubleClick:(CLLocationCoordinate2D)coordinate {
    NSLog(@"onDoubleClick");
    NSDictionary* event = @{
                            @"type": @"onMapDoubleClick",
                            @"params": @{
                                    @"latitude": @(coordinate.latitude),
                                    @"longitude": @(coordinate.longitude)
                                    }
                            };
    [self sendEvent:mapView params:event];
}

-(void)mapView:(BMKMapView *)mapView
onClickedMapBlank:(CLLocationCoordinate2D)coordinate {
    NSLog(@"onClickedMapBlank");
    NSDictionary* event = @{
                            @"type": @"onMapClick",
                            @"params": @{
                                    @"latitude": @(coordinate.latitude),
                                    @"longitude": @(coordinate.longitude)
                                    }
                            };
    [self sendEvent:mapView params:event];
}

-(void)mapViewDidFinishLoading:(BMKMapView *)mapView {
    NSDictionary* event = @{
                            @"type": @"onMapLoaded",
                            @"params": @{}
                            };
    [self sendEvent:mapView params:event];
}

-(void)mapView:(BMKMapView *)mapView
didSelectAnnotationView:(BMKAnnotationView *)view {
    titleStr=[[view annotation] title];
    subtitle=[[view annotation] subtitle];
     longitude=[[view annotation] coordinate].longitude;
     latitude=[[view annotation] coordinate].latitude;
    NSLog(@"didSelectAnnotationView  %@",titleStr);
    mapViewA=mapView;
    NSDictionary* event = @{
                            @"type": @"onMarkerClick",
                            @"params": @{
                                    @"title": [[view annotation] title],
                                    @"position": @{
                                            @"latitude": @([[view annotation] coordinate].latitude),
                                            @"longitude": @([[view annotation] coordinate].longitude)
                                            }
                                    }
                            };
    [self sendEvent:mapView params:event];
}

- (void) mapView:(BMKMapView *)mapView
 onClickedMapPoi:(BMKMapPoi *)mapPoi {
    NSLog(@"onClickedMapPoi");
    NSDictionary* event = @{
                            @"type": @"onMapPoiClick",
                            @"params": @{
                                    @"name": mapPoi.text,
                                    @"uid": mapPoi.uid,
                                    @"latitude": @(mapPoi.pt.latitude),
                                    @"longitude": @(mapPoi.pt.longitude)
                                    }
                            };
    [self sendEvent:mapView params:event];
}

//- (void)mapView:(BMKMapView *)mapView onClickedBMKOverlayView:(BMKOverlayView *)overlayView{
//    NSLog(@"onClickedBMKOverlayView");
//}


- (BMKAnnotationView *)mapView:(BMKMapView *)mapView viewForAnnotation:(id <BMKAnnotation>)annotation {
    if ([annotation isKindOfClass:[BMKPointAnnotation class]])
    {
        static NSString *reuseIndetifier = @"annotationReuseIndetifier";
        BMKAnnotationView *annotationView = (BMKAnnotationView *)[mapView dequeueReusableAnnotationViewWithIdentifier:reuseIndetifier];
        if (annotationView == nil)
        {
            annotationView = [[BMKAnnotationView alloc] initWithAnnotation:annotation
                                                           reuseIdentifier:reuseIndetifier];
            //添加tips上的按钮
            UIButton* rightButton = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
            [rightButton addTarget:self action:@selector(showDetails:) forControlEvents:UIControlEventTouchUpInside];
            annotationView.rightCalloutAccessoryView = rightButton;
        }
        NSString* title=[annotation title];
        NSString* subtitle=[annotation subtitle];
        NSLog(@"------->%@ title:%@",subtitle,title);
        if(subtitle!=nil){
            BOOL result = [subtitle isEqualToString:@"故障"];
            if(result){
                 NSLog(@"=======>%@ title:%@",subtitle,title);

                annotationView.image =[UIImage imageNamed:@"map-point-red.png"];//[self createShareImage:imgView Context:@"故障"];
            }else{
                annotationView.image = [UIImage imageNamed:@"point.png"];
            }
        }
        
        return annotationView;
    }
    return nil;
}

// 1.将文字添加到图片上;imageName 图片名字, text 需画的字体
- (UIImage *)createShareImage:(UIImage *)tImage Context:(NSString *)text
{
    UIImage *sourceImage = tImage;
    CGSize imageSize; //画的背景 大小
    imageSize = [sourceImage size];
    
    UIGraphicsBeginImageContextWithOptions(imageSize, NO, 0.0);
    [sourceImage drawAtPoint:CGPointMake(0, 0)];
    //获得 图形上下文
    CGContextRef context=UIGraphicsGetCurrentContext();
    CGContextDrawPath(context, kCGPathStroke);
    CGFloat nameFont = 8.f;
    //画 自己想要画的内容
    NSDictionary *attributes = @{NSFontAttributeName:[UIFont systemFontOfSize:nameFont]};
    CGRect sizeToFit = [text boundingRectWithSize:CGSizeMake(CGFLOAT_MAX, nameFont) options:NSStringDrawingUsesDeviceMetrics attributes:attributes context:nil];
    NSLog(@"图片: %f %f",imageSize.width,imageSize.height);
    NSLog(@"sizeToFit: %f %f",sizeToFit.size.width,sizeToFit.size.height);
    CGContextSetFillColorWithColor(context, [UIColor blackColor].CGColor);
    [text drawAtPoint:CGPointMake((imageSize.width-sizeToFit.size.width)/2,7.5) withAttributes:@{NSFontAttributeName:[UIFont systemFontOfSize:nameFont]}];
    //返回绘制的新图形
    
    UIImage *newImage=UIGraphicsGetImageFromCurrentImageContext();
    
    UIGraphicsEndImageContext();
    return newImage;
}

-(void)showDetails:(UIButton *)btn{
    NSLog(@"showDetails %@",titleStr);
    NSDictionary* event = @{
                            @"type": @"onMarkerPaoClick",
                            @"params": @{
                                    @"title": titleStr,
                                    @"subtitle": subtitle,
                                    @"longitude":@(longitude),
                                    @"latitude": @(latitude)
                                    }
                            };
    [self sendEvent:mapViewA params:event];
}

- (void)mapView:(BMKMapView *)mapView regionDidChangeAnimated:(BOOL)animated{
     NSLog(@"----------->regionDidChangeAnimated ");
    
//    [self drawLineTexture:mapView];
    
    CLLocationCoordinate2D targetGeoPt = [mapView getMapStatus].targetGeoPt;
    
    //     NSLog(@"mapStatusDidChanged  %f",targetGeoPt.latitude);
    //当前屏幕中心的经纬度
    CGFloat centerLongitude = targetGeoPt.longitude;
    CGFloat centerLatitude = targetGeoPt.latitude;
    //当前屏幕显示的范围的经纬度
    CLLocationDegrees pointssLongitudeDelta= mapView.region.span.longitudeDelta;
    CLLocationDegrees pointssLatitudeDelta = mapView.region.span.latitudeDelta;
    
    NSLog(@"角 %f",pointssLatitudeDelta);
    
    if(pointssLatitudeDelta==0.0035418173204959658 ||pointssLatitudeDelta==0.005312725980466837 ){
        pointssLongitudeDelta = 0.439271;
        pointssLatitudeDelta = 0.611535;
    }
    //    NSLog(@"==pointssLongitudeDelta  %f",pointssLongitudeDelta);
    //    NSLog(@"==pointssLatitudeDelta  %f",pointssLatitudeDelta);
    
    //左上角
    CGFloat leftUpLong =centerLongitude -pointssLongitudeDelta/2.0;
    CGFloat leftUpLati =centerLatitude +pointssLatitudeDelta/2.0;
    //右上角
    CGFloat rightUpLong =centerLongitude + pointssLongitudeDelta/2.0;
    CGFloat rightUpLati =centerLatitude -pointssLatitudeDelta/2.0;
    //左下角
    CGFloat leftDownLong =centerLongitude - pointssLongitudeDelta/2.0;
    CGFloat leftDownlati =centerLatitude + pointssLatitudeDelta/2.0;
    //右下角
    CGFloat rightDownLong =centerLongitude + pointssLongitudeDelta/2.0;
    CGFloat rightDownlati =centerLatitude - pointssLatitudeDelta/2.0;
    
    //    NSLog(@"左上角 %f,%f-------右上角 %f,%f-------左下角 %f,%f-------右下角 %f,%f-------",leftUpLong,leftUpLati,rightUpLong,rightUpLati,leftDownLong,leftDownlati,rightDownLong,rightDownlati);
    
    NSDictionary* event = @{
                            @"type": @"onMapStatusChangeFinish",
                            @"params": @{
                                    @"target": @{
                                            @"latitude": @(targetGeoPt.latitude),
                                            @"longitude": @(targetGeoPt.longitude)
                                            },
                                    @"zoom": @(mapView.zoomLevel),
                                    @"leftUpLong":@(leftUpLong),
                                    @"leftUpLati":@(leftUpLati),
                                    @"rightUpLong":@(rightUpLong),
                                    @"rightUpLati":@(rightUpLati),
                                    @"leftDownLong":@(leftDownLong),
                                    @"leftDownlati":@(leftDownlati),
                                    @"rightDownLong":@(rightDownLong),
                                    @"rightDownlati":@(rightDownlati),
                                    @"overlook": @""
                                    }
                            };
    [self sendEvent:mapView params:event];
}

- (void)drawLineTexture:(BMKMapView *)mapView{
    //构建顶点数组
    CLLocationCoordinate2D coords[5] = {0};
    coords[0].latitude = 39.965;
    coords[0].longitude = 116.404;
    coords[1].latitude = 39.925;
    coords[1].longitude = 116.454;
    coords[2].latitude = 39.955;
    coords[2].longitude = 116.494;
    coords[3].latitude = 39.905;
    coords[3].longitude = 116.654;
    coords[4].latitude = 39.965;
    coords[4].longitude = 116.704;
    //构建分段纹理索引数组
    NSArray *textureIndex = [NSArray arrayWithObjects:
                             [NSNumber numberWithInt:0],
                             [NSNumber numberWithInt:0],
                             [NSNumber numberWithInt:0],
                             [NSNumber numberWithInt:0], nil];
    
    //构建BMKPolyline,使用分段纹理
    BMKPolyline *polyLine = [BMKPolyline polylineWithCoordinates:coords count:5 textureIndex:textureIndex];
    //添加分段纹理绘制折线覆盖物
    [mapView addOverlay:polyLine];
}

//绘制线代理方法
- (BMKOverlayView *)mapView:(BMKMapView *)mapView viewForOverlay:(id <BMKOverlay>)overlay{
    
    //绘制带纹理的线的设置
    
    if ([overlay isKindOfClass:[BMKPolyline class]]) {
        BMKPolylineView *polylineView = [[BMKPolylineView alloc] initWithOverlay:overlay];
        polylineView.lineWidth = 8;
        polylineView.isFocus = YES;// 是否分段纹理绘制(突出显示),默认YES
        //加载分段纹理图片,必须否则不能进行分段纹理绘制
        [polylineView loadStrokeTextureImages:
         [NSArray arrayWithObjects:[UIImage imageNamed:@"road_green_arrow.png"],nil]];
        return polylineView;
    }
    return nil;
}


-(void)mapStatusDidChanged: (BMKMapView *)mapView    {
   
    CLLocationCoordinate2D targetGeoPt = [mapView getMapStatus].targetGeoPt;
    
//     NSLog(@"mapStatusDidChanged  %f",targetGeoPt.latitude);
    //当前屏幕中心的经纬度
    CGFloat centerLongitude = targetGeoPt.longitude;
    CGFloat centerLatitude = targetGeoPt.latitude;
    //当前屏幕显示的范围的经纬度
    CLLocationDegrees pointssLongitudeDelta= mapView.region.span.longitudeDelta;
    CLLocationDegrees pointssLatitudeDelta = mapView.region.span.latitudeDelta;
    
    NSLog(@"角 %f",pointssLatitudeDelta);
    
    if(pointssLatitudeDelta==0.0035418173204959658 ||pointssLatitudeDelta==0.005312725980466837 ){
        pointssLongitudeDelta = 0.439271;
        pointssLatitudeDelta = 0.611535;
    }
//    NSLog(@"==pointssLongitudeDelta  %f",pointssLongitudeDelta);
//    NSLog(@"==pointssLatitudeDelta  %f",pointssLatitudeDelta);
    
    //左上角
    CGFloat leftUpLong =centerLongitude -pointssLongitudeDelta/2.0;
    CGFloat leftUpLati =centerLatitude +pointssLatitudeDelta/2.0;
    //右上角
    CGFloat rightUpLong =centerLongitude + pointssLongitudeDelta/2.0;
    CGFloat rightUpLati =centerLatitude -pointssLatitudeDelta/2.0;
    //左下角
    CGFloat leftDownLong =centerLongitude - pointssLongitudeDelta/2.0;
    CGFloat leftDownlati =centerLatitude + pointssLatitudeDelta/2.0;
    //右下角
    CGFloat rightDownLong =centerLongitude + pointssLongitudeDelta/2.0;
    CGFloat rightDownlati =centerLatitude - pointssLatitudeDelta/2.0;
    
//    NSLog(@"左上角 %f,%f-------右上角 %f,%f-------左下角 %f,%f-------右下角 %f,%f-------",leftUpLong,leftUpLati,rightUpLong,rightUpLati,leftDownLong,leftDownlati,rightDownLong,rightDownlati);
    
    NSDictionary* event = @{
                            @"type": @"onMapStatusChange",
                            @"params": @{
                                    @"target": @{
                                            @"latitude": @(targetGeoPt.latitude),
                                            @"longitude": @(targetGeoPt.longitude)
                                            },
                                    @"zoom": @(mapView.zoomLevel),
                                    @"leftUpLong":@(leftUpLong),
                                    @"leftUpLati":@(leftUpLati),
                                    @"rightUpLong":@(rightUpLong),
                                    @"rightUpLati":@(rightUpLati),
                                    @"leftDownLong":@(leftDownLong),
                                    @"leftDownlati":@(leftDownlati),
                                    @"rightDownLong":@(rightDownLong),
                                    @"rightDownlati":@(rightDownlati),
                                    @"overlook": @""
                                    }
                            };    
    [self sendEvent:mapView params:event];
    
}

-(void)sendEvent:(RCTBaiduMapView *) mapView params:(NSDictionary *) params {
    if (!mapView.onChange) {
        return;
    }
    mapView.onChange(params);
}

@end

2.RCTBaiduMap.m文件中声明实例变量_polyLine,添加setPolylines方法,判断_polyLine是否为空,不为空的情况下先要调用removeOverlay:方法将原有的覆盖物删除

RCTBaiduMap.m代码如下

//
//  RCTBaiduMap.m
//  RCTBaiduMap
//
//  Created by lovebing on 4/17/2016.
//  Copyright  2016 lovebing.org. All rights reserved.
//

#import "RCTBaiduMapView.h"

@implementation RCTBaiduMapView {
    BMKMapView* _mapView;
    BMKPointAnnotation* _annotation;
    BMKPolyline *_polyLine;
    NSMutableArray* _annotations;
}

-(void)setZoom:(float)zoom {
    self.zoomLevel = zoom;
}

-(void)setCenterLatLng:(NSDictionary *)LatLngObj {
    double lat = [RCTConvert double:LatLngObj[@"lat"]];
    double lng = [RCTConvert double:LatLngObj[@"lng"]];
    CLLocationCoordinate2D point = CLLocationCoordinate2DMake(lat, lng);
    self.centerCoordinate = point;
}

-(void)setMarker:(NSDictionary *)option {
    NSLog(@"setMarker");
    if(option != nil) {
        if(_annotation == nil) {
            _annotation = [[BMKPointAnnotation alloc]init];
            [self addMarker:_annotation option:option];
        }
        else {
            [self updateMarker:_annotation option:option];
        }
    }
}

-(void)setMarkers:(NSArray *)markers {
    int markersCount = [markers count];
    if(_annotations == nil) {
        _annotations = [[NSMutableArray alloc] init];
    }
    if(markers != nil) {
        for (int i = 0; i < markersCount; i++)  {
            NSDictionary *option = [markers objectAtIndex:i];
            
            BMKPointAnnotation *annotation = nil;
            if(i < [_annotations count]) {
                annotation = [_annotations objectAtIndex:i];
            }
            if(annotation == nil) {
                annotation = [[BMKPointAnnotation alloc]init];
                [self addMarker:annotation option:option];
                [_annotations addObject:annotation];
            }
            else {
                [self updateMarker:annotation option:option];
            }
        }
        
        int _annotationsCount = [_annotations count];
        
//        NSString *smarkersCount = [NSString stringWithFormat:@"%d", markersCount];
//        NSString *sannotationsCount = [NSString stringWithFormat:@"%d", _annotationsCount];
//        NSLog(@"smarkersCount:%@",smarkersCount);
//        NSLog(@"sannotationsCount:%@",sannotationsCount);
        
        if(markersCount < _annotationsCount) {
            int start = _annotationsCount - 1;
            for(int i = start; i >= markersCount; i--) {
                BMKPointAnnotation *annotation = [_annotations objectAtIndex:i];
                [self removeAnnotation:annotation];
                [_annotations removeObject:annotation];
            }
        }
        
        
    }
}

- (void)setPolylines:(NSArray *)polylines {
    
    if (_polyLine) {
        [self removeOverlay:_polyLine];
    }
    
    int polylinesCount = [polylines count];
    CLLocationCoordinate2D coords[polylinesCount];
    NSMutableArray *textureIndex = [[NSMutableArray alloc] init];
    
    
    if (polylines != nil && ![polylines isKindOfClass:[NSNull class]] && polylines.count != 0) {
        
        
        for (int i=0; i < polylinesCount; i++) {
            NSDictionary *option = [polylines objectAtIndex:i];
            
            coords[i] = [self getCoorFromMarkerOption:option];
            
            if (i < polylinesCount-1) {
                [textureIndex addObject:[NSNumber numberWithInt:0]];
            }
            
        }
        
        //构建BMKPolyline,使用分段纹理
        _polyLine = [BMKPolyline polylineWithCoordinates:coords count:polylinesCount textureIndex:textureIndex];
        
        //添加分段纹理绘制折线覆盖物
        [self addOverlay:_polyLine];
        
        
    }

    
}

-(void)setOverlayOptions:(NSArray *)Options {
   
}

-(CLLocationCoordinate2D)getCoorFromMarkerOption:(NSDictionary *)option {
    double lat = [RCTConvert double:option[@"latitude"]];
    double lng = [RCTConvert double:option[@"longitude"]];
    CLLocationCoordinate2D coor;
    coor.latitude = lat;
    coor.longitude = lng;
    return coor;
}

-(void)addMarker:(BMKPointAnnotation *)annotation option:(NSDictionary *)option {
    [self updateMarker:annotation option:option];
    [self addAnnotation:annotation];
}

-(void)updateMarker:(BMKPointAnnotation *)annotation option:(NSDictionary *)option {
    CLLocationCoordinate2D coor = [self getCoorFromMarkerOption:option];
    NSString *title = [RCTConvert NSString:option[@"title"]];
    NSString *subtitle = [RCTConvert NSString:option[@"subtitle"]];
    if(title.length == 0) {
        title = nil;
    }
    if(subtitle.length == 0) {
        subtitle = nil;
    }

    annotation.coordinate = coor;
    annotation.title = title;
    annotation.subtitle=subtitle;
//    annotation.ID=ID;
}


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